Same conversion as with resources from static arrays to lists, except
[coreboot.git] / src / southbridge / broadcom / bcm5785 / bcm5785_lpc.c
1 /*
2  * Copyright  2005 AMD
3  *  by yinghai.lu@amd.com
4  */
5
6 #include <console/console.h>
7 #include <device/device.h>
8 #include <device/pci.h>
9 #include <device/pnp.h>
10 #include <device/pci_ids.h>
11 #include <device/pci_ops.h>
12 #include <pc80/mc146818rtc.h>
13 #include <pc80/isa-dma.h>
14 #include <bitops.h>
15 #include <arch/io.h>
16 #include "bcm5785.h"
17
18 static void lpc_init(device_t dev)
19 {
20
21         /* Initialize the real time clock */
22         rtc_init(0);
23
24         /* Initialize isa dma */
25         isa_dma_init();
26
27 }
28
29 static void bcm5785_lpc_read_resources(device_t dev)
30 {
31         struct resource *res;
32
33         /* Get the normal pci resources of this device */
34         pci_dev_read_resources(dev);
35
36         /* Add an extra subtractive resource for both memory and I/O. */
37         res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
38         res->base = 0;
39         res->size = 0x1000;
40         res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
41                      IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
42
43         res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
44         res->base = 0xff800000;
45         res->size = 0x00800000; /* 8 MB for flash */
46         res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
47                      IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
48
49         res = new_resource(dev, 3); /* IOAPIC */
50         res->base = 0xfec00000;
51         res->size = 0x00001000;
52         res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
53 }
54
55 /**
56  * @brief Enable resources for children devices
57  *
58  * @param dev the device whos children's resources are to be enabled
59  *
60  * This function is call by the global enable_resources() indirectly via the
61  * device_operation::enable_resources() method of devices.
62  *
63  * Indirect mutual recursion:
64  *      enable_childrens_resources() -> enable_resources()
65  *      enable_resources() -> device_operation::enable_resources()
66  *      device_operation::enable_resources() -> enable_children_resources()
67  */
68 static void bcm5785_lpc_enable_childrens_resources(device_t dev)
69 {
70         struct bus *link;
71         uint32_t reg;
72
73         reg = pci_read_config8(dev, 0x44);
74
75         for (link = dev->link_list; link; link = link->next) {
76                 device_t child;
77                 for (child = link->children; child; child = child->sibling) {
78                         enable_resources(child);
79                         if(child->enabled && (child->path.type == DEVICE_PATH_PNP)) {
80                                 struct resource *res;
81                                 for(res = child->resource_list; res; res = res->next) {
82                                         unsigned long base, end; // don't need long long
83                                         if(!(res->flags & IORESOURCE_IO)) continue;
84                                         base = res->base;
85                                         end = resource_end(res);
86                                         printk(BIOS_DEBUG, "bcm5785lpc decode:%s, base=0x%08lx, end=0x%08lx\n",dev_path(child),base, end);
87                                         switch(base) {
88                                         case 0x60: //KBC
89                                         case 0x64:
90                                                 reg |= (1<<29);
91                                         case 0x3f8: // COM1
92                                                 reg |= (1<<6);  break;
93                                         case 0x2f8: // COM2
94                                                 reg |= (1<<7);  break;
95                                         case 0x378: // Parallal 1
96                                                 reg |= (1<<0); break;
97                                         case 0x3f0: // FD0
98                                                 reg |= (1<<26); break;
99                                         case 0x220:  // Aduio 0
100                                                 reg |= (1<<14); break;
101                                         case 0x300:  // Midi 0
102                                                 reg |= (1<<18); break;
103                                         }
104                                 }
105                         }
106                 }
107         }
108         pci_write_config32(dev, 0x44, reg);
109
110
111 }
112
113 static void bcm5785_lpc_enable_resources(device_t dev)
114 {
115         pci_dev_enable_resources(dev);
116         bcm5785_lpc_enable_childrens_resources(dev);
117 }
118
119 static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
120 {
121         pci_write_config32(dev, 0x40,
122                 ((device & 0xffff) << 16) | (vendor & 0xffff));
123 }
124
125 static struct pci_operations lops_pci = {
126         .set_subsystem = lpci_set_subsystem,
127 };
128
129 static struct device_operations lpc_ops  = {
130         .read_resources   = bcm5785_lpc_read_resources,
131         .set_resources    = pci_dev_set_resources,
132         .enable_resources = bcm5785_lpc_enable_resources,
133         .init             = lpc_init,
134         .scan_bus         = scan_static_bus,
135 //      .enable           = bcm5785_enable,
136         .ops_pci          = &lops_pci,
137 };
138 static const struct pci_driver lpc_driver __pci_driver = {
139         .ops    = &lpc_ops,
140         .vendor = PCI_VENDOR_ID_SERVERWORKS,
141         .device = PCI_DEVICE_ID_SERVERWORKS_BCM5785_LPC,
142 };
143