printk_foo -> printk(BIOS_FOO, ...)
[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         unsigned link; 
71         uint32_t reg;
72         int i;
73         int var_num = 0;
74         
75         reg = pci_read_config8(dev, 0x44);
76
77         for (link = 0; link < dev->links; link++) {
78                 device_t child;
79                 for (child = dev->link[link].children; child; child = child->sibling) {
80                         enable_resources(child);
81                         if(child->enabled && (child->path.type == DEVICE_PATH_PNP)) {
82                                 for(i=0;i<child->resources;i++) {
83                                         struct resource *res;
84                                         unsigned long base, end; // don't need long long
85                                         res = &child->resource[i];
86                                         if(!(res->flags & IORESOURCE_IO)) continue;
87                                         base = res->base;
88                                         end = resource_end(res);
89                                         printk(BIOS_DEBUG, "bcm5785lpc decode:%s, base=0x%08x, end=0x%08x\r\n",dev_path(child),base, end);
90                                         switch(base) {
91                                         case 0x60: //KBC
92                                         case 0x64:
93                                                 reg |= (1<<29);
94                                         case 0x3f8: // COM1
95                                                 reg |= (1<<6);  break;
96                                         case 0x2f8: // COM2
97                                                 reg |= (1<<7);  break; 
98                                         case 0x378: // Parallal 1
99                                                 reg |= (1<<0); break;
100                                         case 0x3f0: // FD0 
101                                                 reg |= (1<<26); break;
102                                         case 0x220:  // Aduio 0
103                                                 reg |= (1<<14); break;
104                                         case 0x300:  // Midi 0
105                                                 reg |= (1<<18); break;
106                                         }
107                                 }
108                         }
109                 }
110         }
111         pci_write_config32(dev, 0x44, reg);
112         
113
114 }
115
116 static void bcm5785_lpc_enable_resources(device_t dev)
117 {
118         pci_dev_enable_resources(dev);
119         bcm5785_lpc_enable_childrens_resources(dev);
120 }
121
122 static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
123 {
124         pci_write_config32(dev, 0x40,
125                 ((device & 0xffff) << 16) | (vendor & 0xffff));
126 }
127
128 static struct pci_operations lops_pci = {
129         .set_subsystem = lpci_set_subsystem,
130 };
131
132 static struct device_operations lpc_ops  = {
133         .read_resources   = bcm5785_lpc_read_resources,
134         .set_resources    = pci_dev_set_resources,
135         .enable_resources = bcm5785_lpc_enable_resources,
136         .init             = lpc_init,
137         .scan_bus         = scan_static_bus,
138 //      .enable           = bcm5785_enable,
139         .ops_pci          = &lops_pci,
140 };
141 static const struct pci_driver lpc_driver __pci_driver = {
142         .ops    = &lpc_ops,
143         .vendor = PCI_VENDOR_ID_SERVERWORKS,
144         .device = PCI_DEVICE_ID_SERVERWORKS_BCM5785_LPC,
145 };
146