blob: de1637a0c5a6e39748585f62114ba9250431be9d [file] [log] [blame]
Frank Vibrans63e62b02011-02-14 18:38:14 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 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
21#include <device/device.h> /* device_t */
22#include <device/pci.h> /* device_operations */
23#include <device/pci_ids.h>
Kerry She991f8802011-06-01 01:56:49 +000024#include <arch/ioapic.h>
Frank Vibrans63e62b02011-02-14 18:38:14 +000025#include <device/smbus.h> /* smbus_bus_operations */
26#include <console/console.h> /* printk */
27#include "lpc.h" /* lpc_read_resources */
28#include "SBPLATFORM.h" /* Platfrom Specific Definitions */
29#include "cfg.h" /* sb800 Cimx configuration */
30#include "chip.h" /* struct southbridge_amd_cimx_wrapper_sb800_config */
31
32
33/*implement in mainboard.c*/
34//void set_pcie_assert(void);
35//void set_pcie_deassert(void);
36void set_pcie_reset(void);
37void set_pcie_dereset(void);
38
39
40#ifndef _RAMSTAGE_
41#define _RAMSTAGE_
42#endif
43static AMDSBCFG sb_late_cfg; //global, init in sb800_cimx_config
44static AMDSBCFG *sb_config = &sb_late_cfg;
45
46
47/**
48 * @brief Entry point of Southbridge CIMx callout
49 *
50 * prototype UINT32 (*SBCIM_HOOK_ENTRY)(UINT32 Param1, UINT32 Param2, void* pConfig)
51 *
52 * @param[in] func Southbridge CIMx Function ID.
53 * @param[in] data Southbridge Input Data.
54 * @param[in] sb_config Southbridge configuration structure pointer.
55 *
56 */
57u32 sb800_callout_entry(u32 func, u32 data, void* config)
58{
59 u32 ret = 0;
60
61 switch (func) {
62 case CB_SBGPP_RESET_ASSERT:
63 //set_pcie_assert();
64 set_pcie_reset();
65 break;
66
67 case CB_SBGPP_RESET_DEASSERT:
68 //set_pcie_deassert();
69 set_pcie_dereset();
70 break;
71
72 case IMC_FIRMWARE_FAIL:
73 break;
74
75 default:
76 break;
77 }
78
79 return ret;
80}
81
82
83static struct pci_operations lops_pci = {
84 .set_subsystem = 0,
85};
86
87static void lpc_enable_resources(device_t dev)
88{
89
90 pci_dev_enable_resources(dev);
91 //lpc_enable_childrens_resources(dev);
92}
93
94static void lpc_init(device_t dev)
95{
96 /* SB Configure HPET base and enable bit */
97 hpetInit(sb_config, &(sb_config->BuildParameters));
98}
99
100static struct device_operations lpc_ops = {
101 .read_resources = lpc_read_resources,
102 .set_resources = lpc_set_resources,
103 .enable_resources = lpc_enable_resources,
104 .init = lpc_init,
105 .scan_bus = scan_static_bus,
106 .ops_pci = &lops_pci,
107};
108
109static const struct pci_driver lpc_driver __pci_driver = {
110 .ops = &lpc_ops,
111 .vendor = PCI_VENDOR_ID_ATI,
112 .device = PCI_DEVICE_ID_ATI_SB800_LPC,
113};
114
115
116static void sata_enable_resources(struct device *dev)
117{
118 sataInitAfterPciEnum(sb_config);
119 pci_dev_enable_resources(dev);
120}
121
122static void sata_init(struct device *dev)
123{
124 sb_config->StdHeader.Func = SB_MID_POST_INIT;
125 AmdSbDispatcher(sb_config); //sataInitMidPost only
126 commonInitLateBoot(sb_config);
127 sataInitLatePost(sb_config);
128}
129
130static struct device_operations sata_ops = {
131 .read_resources = pci_dev_read_resources,
132 .set_resources = pci_dev_set_resources,
133 .enable_resources = sata_enable_resources, //pci_dev_enable_resources,
134 .init = sata_init,
135 .scan_bus = 0,
136 .ops_pci = &lops_pci,
137};
138
139static const struct pci_driver sata_driver __pci_driver = {
140 .ops = &sata_ops,
141 .vendor = PCI_VENDOR_ID_ATI,
Scott Duplichanf191c722011-05-15 21:38:08 +0000142 .device = PCI_DEVICE_ID_ATI_SB800_SATA_AHCI,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000143};
144
Frank Vibrans63e62b02011-02-14 18:38:14 +0000145#if CONFIG_USBDEBUG
146static void usb_set_resources(struct device *dev)
147{
148 struct resource *res;
149 u32 base;
150 u32 old_debug;
151
152 old_debug = get_ehci_debug();
153 set_ehci_debug(0);
154
155 pci_dev_set_resources(dev);
156
157 res = find_resource(dev, 0x10);
158 set_ehci_debug(old_debug);
159 if (!res)
160 return;
161 base = res->base;
162 set_ehci_base(base);
163 report_resource_stored(dev, res, "");
164}
165#endif
166
167static void usb_init(struct device *dev)
168{
169 usbInitAfterPciInit(sb_config);
170 commonInitLateBoot(sb_config);
171}
172
173static struct device_operations usb_ops = {
174 .read_resources = pci_dev_read_resources,
175#if CONFIG_USBDEBUG
176 .set_resources = usb_set_resources,
177#else
178 .set_resources = pci_dev_set_resources,
179#endif
180 .enable_resources = pci_dev_enable_resources,
181 .init = usb_init,
182 .scan_bus = 0,
183 .ops_pci = &lops_pci,
184};
185
186/*
187 * The pci id of usb ctrl 0 and 1 are the same.
188 */
189static const struct pci_driver usb_ohci123_driver __pci_driver = {
190 .ops = &usb_ops,
191 .vendor = PCI_VENDOR_ID_ATI,
192 .device = PCI_DEVICE_ID_ATI_SB800_USB_18_0, /* OHCI-USB1, OHCI-USB2, OHCI-USB3 */
193};
194
195static const struct pci_driver usb_ehci123_driver __pci_driver = {
196 .ops = &usb_ops,
197 .vendor = PCI_VENDOR_ID_ATI,
198 .device = PCI_DEVICE_ID_ATI_SB800_USB_18_2, /* EHCI-USB1, EHCI-USB2, EHCI-USB3 */
199};
200
201static const struct pci_driver usb_ohci4_driver __pci_driver = {
202 .ops = &usb_ops,
203 .vendor = PCI_VENDOR_ID_ATI,
204 .device = PCI_DEVICE_ID_ATI_SB800_USB_20_5, /* OHCI-USB4 */
205};
206
207
208static void azalia_init(struct device *dev)
209{
210 azaliaInitAfterPciEnum(sb_config); //Detect and configure High Definition Audio
211}
212
213static struct device_operations azalia_ops = {
214 .read_resources = pci_dev_read_resources,
215 .set_resources = pci_dev_set_resources,
216 .enable_resources = pci_dev_enable_resources,
217 .init = azalia_init,
218 .scan_bus = 0,
219 .ops_pci = &lops_pci,
220};
221
222static const struct pci_driver azalia_driver __pci_driver = {
223 .ops = &azalia_ops,
224 .vendor = PCI_VENDOR_ID_ATI,
225 .device = PCI_DEVICE_ID_ATI_SB800_HDA,
226};
227
228
229static void gec_init(struct device *dev)
230{
231 gecInitAfterPciEnum(sb_config);
232 gecInitLatePost(sb_config);
233 printk(BIOS_DEBUG, "gec hda enabled\n");
234}
235
236static struct device_operations gec_ops = {
237 .read_resources = pci_dev_read_resources,
238 .set_resources = pci_dev_set_resources,
239 .enable_resources = pci_dev_enable_resources,
240 .init = gec_init,
241 .scan_bus = 0,
242 .ops_pci = &lops_pci,
243};
244
245static const struct pci_driver gec_driver __pci_driver = {
246 .ops = &gec_ops,
247 .vendor = PCI_VENDOR_ID_ATI,
248 .device = PCI_DEVICE_ID_ATI_SB800_GEC,
249};
250
251
252static void pcie_init(device_t dev)
253{
254 sbPcieGppLateInit(sb_config);
255}
256
257static struct device_operations pci_ops = {
258 .read_resources = pci_bus_read_resources,
259 .set_resources = pci_dev_set_resources,
260 .enable_resources = pci_bus_enable_resources,
261 .init = pcie_init,
262 .scan_bus = pci_scan_bridge,
263 .reset_bus = pci_bus_reset,
264 .ops_pci = &lops_pci,
265};
266
267static const struct pci_driver pci_driver __pci_driver = {
268 .ops = &pci_ops,
269 .vendor = PCI_VENDOR_ID_ATI,
270 .device = PCI_DEVICE_ID_ATI_SB800_PCI,
271};
272
273
274struct device_operations bridge_ops = {
275 .read_resources = pci_bus_read_resources,
276 .set_resources = pci_dev_set_resources,
277 .enable_resources = pci_bus_enable_resources,
278 .init = pcie_init,
279 .scan_bus = pci_scan_bridge,
280 .enable = 0,
281 .reset_bus = pci_bus_reset,
282 .ops_pci = &lops_pci,
283};
284
285/* 0:15:0 PCIe PortA */
286static const struct pci_driver PORTA_driver __pci_driver = {
287 .ops = &bridge_ops,
288 .vendor = PCI_VENDOR_ID_ATI,
289 .device = PCI_DEVICE_ID_ATI_SB800_PCIEA,
290};
291
292/* 0:15:1 PCIe PortB */
293static const struct pci_driver PORTB_driver __pci_driver = {
294 .ops = &bridge_ops,
295 .vendor = PCI_VENDOR_ID_ATI,
296 .device = PCI_DEVICE_ID_ATI_SB800_PCIEB,
297};
298
299/* 0:15:2 PCIe PortC */
300static const struct pci_driver PORTC_driver __pci_driver = {
301 .ops = &bridge_ops,
302 .vendor = PCI_VENDOR_ID_ATI,
303 .device = PCI_DEVICE_ID_ATI_SB800_PCIEC,
304};
305
306/* 0:15:3 PCIe PortD */
307static const struct pci_driver PORTD_driver __pci_driver = {
308 .ops = &bridge_ops,
309 .vendor = PCI_VENDOR_ID_ATI,
310 .device = PCI_DEVICE_ID_ATI_SB800_PCIED,
311};
312
313
314/**
315 * @brief SB Cimx entry point sbBeforePciInit wrapper
316 */
317static void sb800_enable(device_t dev)
318{
Frank Vibrans63e62b02011-02-14 18:38:14 +0000319 struct southbridge_amd_cimx_wrapper_sb800_config *sb_chip =
320 (struct southbridge_amd_cimx_wrapper_sb800_config *)(dev->chip_info);
321
322 sb800_cimx_config(sb_config);
323 printk(BIOS_DEBUG, "sb800_enable() ");
324
325 /* Config SouthBridge SMBUS/ACPI/IDE/LPC/PCIB.*/
326 commonInitEarlyBoot(sb_config);
327 commonInitEarlyPost(sb_config);
328
329 switch (dev->path.pci.devfn) {
330 case (0x11 << 3) | 0: /* 0:11.0 SATA */
331 if (dev->enabled) {
Kerry She991f8802011-06-01 01:56:49 +0000332 sb_config->SATAMODE.SataMode.SataController = CIMX_OPTION_ENABLED;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000333 if (1 == sb_chip->boot_switch_sata_ide)
334 sb_config->SATAMODE.SataMode.SataIdeCombMdPriSecOpt = 0; //0 -IDE as primary.
335 else if (0 == sb_chip->boot_switch_sata_ide)
336 sb_config->SATAMODE.SataMode.SataIdeCombMdPriSecOpt = 1; //1 -IDE as secondary.
337 } else {
Kerry She991f8802011-06-01 01:56:49 +0000338 sb_config->SATAMODE.SataMode.SataController = CIMX_OPTION_DISABLED;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000339 }
340
341 sataInitBeforePciEnum(sb_config); // Init SATA class code and PHY
342 break;
343
344 case (0x12 << 3) | 0: /* 0:12:0 OHCI-USB1 */
345 case (0x12 << 3) | 2: /* 0:12:2 EHCI-USB1 */
346 case (0x13 << 3) | 0: /* 0:13:0 OHCI-USB2 */
347 case (0x13 << 3) | 2: /* 0:13:2 EHCI-USB2 */
348 case (0x14 << 3) | 5: /* 0:14:5 OHCI-USB4 */
349 case (0x16 << 3) | 0: /* 0:16:0 OHCI-USB3 */
350 case (0x16 << 3) | 2: /* 0:16:2 EHCI-USB3 */
351 usbInitBeforePciEnum(sb_config); // USB POST TIME Only
352 break;
353
354 case (0x14 << 3) | 0: /* 0:14:0 SMBUS */
Scott Duplichanbe8fae12011-05-15 21:41:00 +0000355 {
Scott Duplichanbe8fae12011-05-15 21:41:00 +0000356 u32 ioapic_base;
357
358 printk(BIOS_INFO, "sm_init().\n");
Kerry She991f8802011-06-01 01:56:49 +0000359 ioapic_base = IO_APIC_ADDR;
Scott Duplichanbe8fae12011-05-15 21:41:00 +0000360 clear_ioapic(ioapic_base);
361 /* I/O APIC IDs are normally limited to 4-bits. Enforce this limit. */
362 #if (CONFIG_APIC_ID_OFFSET == 0 && CONFIG_MAX_CPUS * CONFIG_MAX_PHYSICAL_CPUS < 16)
363 /* Assign the ioapic ID the next available number after the processor core local APIC IDs */
364 setup_ioapic(ioapic_base, CONFIG_MAX_CPUS * CONFIG_MAX_PHYSICAL_CPUS);
365 #elif (CONFIG_APIC_ID_OFFSET > 0)
366 /* Assign the ioapic ID the value 0. Processor APIC IDs follow. */
367 setup_ioapic(ioapic_base, 0);
368 #else
369 #error "The processor APIC IDs must be lifted to make room for the I/O APIC ID"
370 #endif
371 }
372
Frank Vibrans63e62b02011-02-14 18:38:14 +0000373 break;
374
375 case (0x14 << 3) | 1: /* 0:14:1 IDE */
376 if (dev->enabled) {
Kerry She991f8802011-06-01 01:56:49 +0000377 sb_config->SATAMODE.SataMode.SataIdeCombinedMode = CIMX_OPTION_ENABLED;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000378 } else {
Kerry She991f8802011-06-01 01:56:49 +0000379 sb_config->SATAMODE.SataMode.SataIdeCombinedMode = CIMX_OPTION_DISABLED;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000380 }
381 sataInitBeforePciEnum(sb_config); // Init SATA class code and PHY
382 break;
383
384 case (0x14 << 3) | 2: /* 0:14:2 HDA */
385 if (dev->enabled) {
386 if (AZALIA_DISABLE == sb_config->AzaliaController) {
387 sb_config->AzaliaController = AZALIA_AUTO;
388 }
389 printk(BIOS_DEBUG, "hda enabled\n");
390 } else {
391 sb_config->AzaliaController = AZALIA_DISABLE;
392 printk(BIOS_DEBUG, "hda disabled\n");
393 }
394 azaliaInitBeforePciEnum(sb_config); // Detect and configure High Definition Audio
395 break;
396
397
398 case (0x14 << 3) | 3: /* 0:14:3 LPC */
399 break;
400
401 case (0x14 << 3) | 4: /* 0:14:4 PCI */
402 break;
403
404 case (0x14 << 3) | 6: /* 0:14:6 GEC */
405 if (dev->enabled) {
406 sb_config->GecConfig = 0;
407 printk(BIOS_DEBUG, "gec enabled\n");
408 } else {
409 sb_config->GecConfig = 1;
410 printk(BIOS_DEBUG, "gec disabled\n");
411 }
412 gecInitBeforePciEnum(sb_config); // Init GEC
413 break;
414
415 case (0x15 << 3) | 0: /* 0:15:0 PCIe PortA */
Peter Stuge3f0075b2011-05-16 00:05:50 +0000416 sb_config->PORTCONFIG[0].PortCfg.PortPresent = dev->enabled;
417 return;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000418 case (0x15 << 3) | 1: /* 0:15:1 PCIe PortB */
Peter Stuge3f0075b2011-05-16 00:05:50 +0000419 sb_config->PORTCONFIG[1].PortCfg.PortPresent = dev->enabled;
420 return;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000421 case (0x15 << 3) | 2: /* 0:15:2 PCIe PortC */
Peter Stuge3f0075b2011-05-16 00:05:50 +0000422 sb_config->PORTCONFIG[2].PortCfg.PortPresent = dev->enabled;
423 return;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000424 case (0x15 << 3) | 3: /* 0:15:3 PCIe PortD */
Peter Stuge3f0075b2011-05-16 00:05:50 +0000425 sb_config->PORTCONFIG[3].PortCfg.PortPresent = dev->enabled;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000426
427 /*
428 * GPP_CFGMODE_X4000: PortA Lanes[3:0]
429 * GPP_CFGMODE_X2200: PortA Lanes[1:0], PortB Lanes[3:2]
430 * GPP_CFGMODE_X2110: PortA Lanes[1:0], PortB Lane2, PortC Lane3
431 * GPP_CFGMODE_X1111: PortA Lanes0, PortB Lane1, PortC Lane2, PortD Lane3
432 */
433 if (sb_config->GppLinkConfig != sb_chip->gpp_configuration) {
434 sb_config->GppLinkConfig = sb_chip->gpp_configuration;
435 }
436
437 sbPcieGppEarlyInit(sb_config);
438 break;
439
440 default:
441 break;
442 }
443
444 /* Special setting ABCFG registers before PCI emulation. */
445 abSpecialSetBeforePciEnum(sb_config);
446 usbDesertPll(sb_config);
447 //sb_config->StdHeader.Func = SB_BEFORE_PCI_INIT;
448 //AmdSbDispatcher(sb_config);
449}
450
451struct chip_operations southbridge_amd_cimx_wrapper_sb800_ops = {
452 CHIP_NAME("ATI SB800")
453 .enable_dev = sb800_enable,
454};