We define IO_APIC_ADDR in <arch/ioapic.h>, let's use it.
[coreboot.git] / src / southbridge / amd / sb600 / sb600_lpc.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <console/console.h>
21 #include <device/device.h>
22 #include <device/pci.h>
23 #include <device/pnp.h>
24 #include <device/pci_ids.h>
25 #include <device/pci_ops.h>
26 #include <pc80/mc146818rtc.h>
27 #include <pc80/isa-dma.h>
28 #include <bitops.h>
29 #include <arch/io.h>
30 #include <arch/ioapic.h>
31 #include "sb600.h"
32
33 static void lpc_init(device_t dev)
34 {
35         u8 byte;
36         u32 dword;
37         device_t sm_dev;
38
39         /* Enable the LPC Controller */
40         sm_dev = dev_find_slot(0, PCI_DEVFN(0x14, 0));
41         dword = pci_read_config32(sm_dev, 0x64);
42         dword |= 1 << 20;
43         pci_write_config32(sm_dev, 0x64, dword);
44
45         /* Initialize isa dma */
46         isa_dma_init();
47
48         /* RPR 7.2 Enable DMA transaction on the LPC bus */
49         byte = pci_read_config8(dev, 0x40);
50         byte |= (1 << 2);
51         pci_write_config8(dev, 0x40, byte);
52
53         /* RPR 7.3 Disable the timeout mechanism on LPC */
54         byte = pci_read_config8(dev, 0x48);
55         byte &= ~(1 << 7);
56         pci_write_config8(dev, 0x48, byte);
57
58         /* RPR 7.5 Disable LPC MSI Capability */
59         byte = pci_read_config8(dev, 0x78);
60         byte &= ~(1 << 1);
61         pci_write_config8(dev, 0x78, byte);
62
63 }
64
65 static void sb600_lpc_read_resources(device_t dev)
66 {
67         struct resource *res;
68
69         /* Get the normal pci resources of this device */
70         pci_dev_read_resources(dev);    /* We got one for APIC, or one more for TRAP */
71
72         pci_get_resource(dev, 0xA0); /* SPI ROM base address */
73
74         /* Add an extra subtractive resource for both memory and I/O. */
75         res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
76         res->base = 0;
77         res->size = 0x1000;
78         res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
79                      IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
80
81         res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
82         res->base = 0xff800000;
83         res->size = 0x00800000; /* 8 MB for flash */
84         res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
85                      IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
86
87         res = new_resource(dev, 3); /* IOAPIC */
88         res->base = IO_APIC_ADDR;
89         res->size = 0x00001000;
90         res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
91
92         compact_resources(dev);
93 }
94
95 /**
96  * @brief Enable resources for children devices
97  *
98  * @param dev the device whos children's resources are to be enabled
99  *
100  */
101 static void sb600_lpc_enable_childrens_resources(device_t dev)
102 {
103         struct bus *link;
104         u32 reg, reg_x;
105         int var_num = 0;
106         u16 reg_var[3];
107
108         reg = pci_read_config32(dev, 0x44);
109         reg_x = pci_read_config32(dev, 0x48);
110
111         for (link = dev->link_list; link; link = link->next) {
112                 device_t child;
113                 for (child = link->children; child;
114                      child = child->sibling) {
115                         if (child->enabled
116                             && (child->path.type == DEVICE_PATH_PNP)) {
117                                 struct resource *res;
118                                 for (res = child->resource_list; res; res = res->next) {
119                                         u32 base, end;  /*  don't need long long */
120                                         if (!(res->flags & IORESOURCE_IO))
121                                                 continue;
122                                         base = res->base;
123                                         end = resource_end(res);
124                                         printk(BIOS_DEBUG, "sb600 lpc decode:%s, base=0x%08x, end=0x%08x\n",
125                                              dev_path(child), base, end);
126                                         switch (base) {
127                                         case 0x60:      /*  KB */
128                                         case 0x64:      /*  MS */
129                                                 reg |= (1 << 29);
130                                                 break;
131                                         case 0x3f8:     /*  COM1 */
132                                                 reg |= (1 << 6);
133                                                 break;
134                                         case 0x2f8:     /*  COM2 */
135                                                 reg |= (1 << 7);
136                                                 break;
137                                         case 0x378:     /*  Parallal 1 */
138                                                 reg |= (1 << 0);
139                                                 break;
140                                         case 0x3f0:     /*  FD0 */
141                                                 reg |= (1 << 26);
142                                                 break;
143                                         case 0x220:     /*  Aduio 0 */
144                                                 reg |= (1 << 8);
145                                                 break;
146                                         case 0x300:     /*  Midi 0 */
147                                                 reg |= (1 << 18);
148                                                 break;
149                                         case 0x400:
150                                                 reg_x |= (1 << 16);
151                                                 break;
152                                         case 0x480:
153                                                 reg_x |= (1 << 17);
154                                                 break;
155                                         case 0x500:
156                                                 reg_x |= (1 << 18);
157                                                 break;
158                                         case 0x580:
159                                                 reg_x |= (1 << 19);
160                                                 break;
161                                         case 0x4700:
162                                                 reg_x |= (1 << 22);
163                                                 break;
164                                         case 0xfd60:
165                                                 reg_x |= (1 << 23);
166                                                 break;
167                                         default:
168                                                 if (var_num >= 3)
169                                                         continue;       /* only 3 var ; compact them ? */
170                                                 switch (var_num) {
171                                                 case 0:
172                                                         reg_x |= (1 << 2);
173                                                         break;
174                                                 case 1:
175                                                         reg_x |= (1 << 24);
176                                                         break;
177                                                 case 2:
178                                                         reg_x |= (1 << 25);
179                                                         break;
180                                                 }
181                                                 reg_var[var_num++] =
182                                                     base & 0xffff;
183                                         }
184                                 }
185                         }
186                 }
187         }
188         pci_write_config32(dev, 0x44, reg);
189         pci_write_config32(dev, 0x48, reg_x);
190         /* Set WideIO for as many IOs found (fall through is on purpose) */
191         switch (var_num) {
192         case 2:
193                 pci_write_config16(dev, 0x90, reg_var[2]);
194         case 1:
195                 pci_write_config16(dev, 0x66, reg_var[1]);
196         case 0:
197                 pci_write_config16(dev, 0x64, reg_var[0]);
198                 break;
199         }
200 }
201
202 static void sb600_lpc_enable_resources(device_t dev)
203 {
204         pci_dev_enable_resources(dev);
205         sb600_lpc_enable_childrens_resources(dev);
206 }
207
208 static struct pci_operations lops_pci = {
209         .set_subsystem = pci_dev_set_subsystem,
210 };
211
212 static struct device_operations lpc_ops = {
213         .read_resources = sb600_lpc_read_resources,
214         .set_resources = pci_dev_set_resources,
215         .enable_resources = sb600_lpc_enable_resources,
216         .init = lpc_init,
217         .scan_bus = scan_static_bus,
218         /* .enable           = sb600_enable, */
219         .ops_pci = &lops_pci,
220 };
221 static const struct pci_driver lpc_driver __pci_driver = {
222         .ops = &lpc_ops,
223         .vendor = PCI_VENDOR_ID_ATI,
224         .device = PCI_DEVICE_ID_ATI_SB600_LPC,
225 };