blob: f4c5fd44e245f14514e7e03833f9c26c876b0619 [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.
Mike Loptienc93a75a2014-06-06 15:16:29 -06005 * Copyright (C) 2014 Sage Electronic Engineering, LLC.
Frank Vibrans63e62b02011-02-14 18:38:14 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Frank Vibrans63e62b02011-02-14 18:38:14 +000019 */
20
21
22#include <device/device.h> /* device_t */
23#include <device/pci.h> /* device_operations */
24#include <device/pci_ids.h>
Mike Loptienc93a75a2014-06-06 15:16:29 -060025#include <bootstate.h>
Kerry She991f8802011-06-01 01:56:49 +000026#include <arch/ioapic.h>
Frank Vibrans63e62b02011-02-14 18:38:14 +000027#include <device/smbus.h> /* smbus_bus_operations */
zbao366f0fc2012-08-03 16:58:53 +080028#include <pc80/mc146818rtc.h>
Edward O'Callaghane61dd0f2014-05-06 23:53:09 +100029#include <pc80/i8254.h>
30#include <pc80/i8259.h>
Frank Vibrans63e62b02011-02-14 18:38:14 +000031#include <console/console.h> /* printk */
zbao9bcdbf82012-04-05 13:18:49 +080032#include <arch/acpi.h>
Kyösti Mälkkie2227a22014-02-05 13:02:55 +020033#include <device/pci_ehci.h>
Frank Vibrans63e62b02011-02-14 18:38:14 +000034#include "lpc.h" /* lpc_read_resources */
35#include "SBPLATFORM.h" /* Platfrom Specific Definitions */
36#include "cfg.h" /* sb800 Cimx configuration */
efdesign9805a89ab2011-06-20 17:38:49 -070037#include "chip.h" /* struct southbridge_amd_cimx_sb800_config */
Kerry Shefeed3292011-08-18 18:03:44 +080038#include "sb_cimx.h" /* AMD CIMX wrapper entries */
Dave Frodin23023a52012-11-13 07:09:12 -070039#include "smbus.h"
Martin Rothe899e512012-12-05 16:07:11 -070040#include "fan.h"
Mike Loptienc93a75a2014-06-06 15:16:29 -060041#include <southbridge/amd/cimx/cimx_util.h>
Frank Vibrans63e62b02011-02-14 18:38:14 +000042
43/*implement in mainboard.c*/
Frank Vibrans63e62b02011-02-14 18:38:14 +000044void set_pcie_reset(void);
45void set_pcie_dereset(void);
46
47
Frank Vibrans63e62b02011-02-14 18:38:14 +000048static AMDSBCFG sb_late_cfg; //global, init in sb800_cimx_config
49static AMDSBCFG *sb_config = &sb_late_cfg;
50
51
52/**
53 * @brief Entry point of Southbridge CIMx callout
54 *
55 * prototype UINT32 (*SBCIM_HOOK_ENTRY)(UINT32 Param1, UINT32 Param2, void* pConfig)
56 *
57 * @param[in] func Southbridge CIMx Function ID.
58 * @param[in] data Southbridge Input Data.
59 * @param[in] sb_config Southbridge configuration structure pointer.
60 *
61 */
62u32 sb800_callout_entry(u32 func, u32 data, void* config)
63{
64 u32 ret = 0;
Kerry Shefeed3292011-08-18 18:03:44 +080065 printk(BIOS_DEBUG, "SB800 - Late.c - %s - Start.\n", __func__);
Frank Vibrans63e62b02011-02-14 18:38:14 +000066 switch (func) {
67 case CB_SBGPP_RESET_ASSERT:
Frank Vibrans63e62b02011-02-14 18:38:14 +000068 set_pcie_reset();
69 break;
70
71 case CB_SBGPP_RESET_DEASSERT:
Frank Vibrans63e62b02011-02-14 18:38:14 +000072 set_pcie_dereset();
73 break;
74
75 case IMC_FIRMWARE_FAIL:
76 break;
77
78 default:
79 break;
80 }
81
Kerry Shefeed3292011-08-18 18:03:44 +080082 printk(BIOS_DEBUG, "SB800 - Late.c - %s - End.\n", __func__);
Frank Vibrans63e62b02011-02-14 18:38:14 +000083 return ret;
84}
85
Kerry Sheh0e6344e2011-10-12 11:42:59 +080086#define HOST_CAP 0x00 /* host capabilities */
87#define HOST_CTL 0x04 /* global host control */
88#define HOST_IRQ_STAT 0x08 /* interrupt status */
89#define HOST_PORTS_IMPL 0x0c /* bitmap of implemented ports */
90
91#define HOST_CTL_AHCI_EN (1 << 31) /* AHCI enabled */
92static void ahci_raid_init(struct device *dev)
93{
94 u8 irq = 0;
95 u32 bar5, caps, ports, val;
96
97 val = pci_read_config16(dev, PCI_CLASS_DEVICE);
98 if (val == PCI_CLASS_STORAGE_SATA) {
99 printk(BIOS_DEBUG, "AHCI controller ");
100 } else if (val == PCI_CLASS_STORAGE_RAID) {
101 printk(BIOS_DEBUG, "RAID controller ");
102 } else {
103 printk(BIOS_WARNING, "device class:%x, neither in ahci or raid mode\n", val);
104 return;
105 }
106
107 irq = pci_read_config8(dev, PCI_INTERRUPT_LINE);
108 bar5 = pci_read_config32(dev, PCI_BASE_ADDRESS_5);
109 printk(BIOS_DEBUG, "IOMEM base: 0x%X, IRQ: 0x%X\n", bar5, irq);
110
111 caps = *(volatile u32 *)(bar5 + HOST_CAP);
112 caps = (caps & 0x1F) + 1;
113 ports= *(volatile u32 *)(bar5 + HOST_PORTS_IMPL);
114 printk(BIOS_DEBUG, "Number of Ports: 0x%x, Port implemented(bit map): 0x%x\n", caps, ports);
115
116 /* make sure ahci is enabled */
117 val = *(volatile u32 *)(bar5 + HOST_CTL);
118 if (!(val & HOST_CTL_AHCI_EN)) {
119 *(volatile u32 *)(bar5 + HOST_CTL) = val | HOST_CTL_AHCI_EN;
120 }
121
122 dev->command |= PCI_COMMAND_MASTER;
123 pci_write_config8(dev, PCI_COMMAND, dev->command);
124 printk(BIOS_DEBUG, "AHCI/RAID controller initialized\n");
125}
Frank Vibrans63e62b02011-02-14 18:38:14 +0000126
127static struct pci_operations lops_pci = {
Kerry Shefeed3292011-08-18 18:03:44 +0800128 .set_subsystem = pci_dev_set_subsystem,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000129};
130
zbao366f0fc2012-08-03 16:58:53 +0800131static void lpc_init(device_t dev)
132{
133 printk(BIOS_DEBUG, "SB800 - Late.c - lpc_init - Start.\n");
134
135 rtc_check_update_cmos_date(RTC_HAS_ALTCENTURY);
136
Mike Loptienac529b12013-02-22 13:18:31 -0700137 /* Initialize the real time clock.
138 * The 0 argument tells rtc_init not to
139 * update CMOS unless it is invalid.
140 * 1 tells rtc_init to always initialize the CMOS.
141 */
142 rtc_init(0);
143
Edward O'Callaghane61dd0f2014-05-06 23:53:09 +1000144 setup_i8259(); /* Initialize i8259 pic */
145 setup_i8254(); /* Initialize i8254 timers */
146
zbao366f0fc2012-08-03 16:58:53 +0800147 printk(BIOS_DEBUG, "SB800 - Late.c - lpc_init - End.\n");
148}
149
Frank Vibrans63e62b02011-02-14 18:38:14 +0000150static struct device_operations lpc_ops = {
151 .read_resources = lpc_read_resources,
152 .set_resources = lpc_set_resources,
Kerry Shefeed3292011-08-18 18:03:44 +0800153 .enable_resources = pci_dev_enable_resources,
zbao366f0fc2012-08-03 16:58:53 +0800154 .init = lpc_init,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000155 .scan_bus = scan_static_bus,
156 .ops_pci = &lops_pci,
157};
158
159static const struct pci_driver lpc_driver __pci_driver = {
160 .ops = &lpc_ops,
161 .vendor = PCI_VENDOR_ID_ATI,
162 .device = PCI_DEVICE_ID_ATI_SB800_LPC,
163};
164
Frank Vibrans63e62b02011-02-14 18:38:14 +0000165static struct device_operations sata_ops = {
166 .read_resources = pci_dev_read_resources,
167 .set_resources = pci_dev_set_resources,
Kerry Shefeed3292011-08-18 18:03:44 +0800168 .enable_resources = pci_dev_enable_resources,
Kerry Sheh0e6344e2011-10-12 11:42:59 +0800169 .init = ahci_raid_init,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000170 .scan_bus = 0,
171 .ops_pci = &lops_pci,
172};
173
Kerry Sheh0e6344e2011-10-12 11:42:59 +0800174static const struct pci_driver ahci_driver __pci_driver = {
Frank Vibrans63e62b02011-02-14 18:38:14 +0000175 .ops = &sata_ops,
176 .vendor = PCI_VENDOR_ID_ATI,
Scott Duplichanf191c722011-05-15 21:38:08 +0000177 .device = PCI_DEVICE_ID_ATI_SB800_SATA_AHCI,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000178};
179
Kerry Sheh0e6344e2011-10-12 11:42:59 +0800180static const struct pci_driver raid_driver __pci_driver = {
181 .ops = &sata_ops,
182 .vendor = PCI_VENDOR_ID_ATI,
183 .device = PCI_DEVICE_ID_ATI_SB800_SATA_RAID,
184};
185static const struct pci_driver raid5_driver __pci_driver = {
186 .ops = &sata_ops,
187 .vendor = PCI_VENDOR_ID_ATI,
188 .device = PCI_DEVICE_ID_ATI_SB800_SATA_RAID5,
189};
190
Frank Vibrans63e62b02011-02-14 18:38:14 +0000191static struct device_operations usb_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +0300192 .read_resources = pci_ehci_read_resources,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000193 .set_resources = pci_dev_set_resources,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000194 .enable_resources = pci_dev_enable_resources,
Kerry Shefeed3292011-08-18 18:03:44 +0800195 .init = 0,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000196 .scan_bus = 0,
197 .ops_pci = &lops_pci,
198};
199
200/*
201 * The pci id of usb ctrl 0 and 1 are the same.
202 */
203static const struct pci_driver usb_ohci123_driver __pci_driver = {
204 .ops = &usb_ops,
205 .vendor = PCI_VENDOR_ID_ATI,
206 .device = PCI_DEVICE_ID_ATI_SB800_USB_18_0, /* OHCI-USB1, OHCI-USB2, OHCI-USB3 */
207};
208
209static const struct pci_driver usb_ehci123_driver __pci_driver = {
210 .ops = &usb_ops,
211 .vendor = PCI_VENDOR_ID_ATI,
212 .device = PCI_DEVICE_ID_ATI_SB800_USB_18_2, /* EHCI-USB1, EHCI-USB2, EHCI-USB3 */
213};
214
215static const struct pci_driver usb_ohci4_driver __pci_driver = {
216 .ops = &usb_ops,
217 .vendor = PCI_VENDOR_ID_ATI,
218 .device = PCI_DEVICE_ID_ATI_SB800_USB_20_5, /* OHCI-USB4 */
219};
220
221
Frank Vibrans63e62b02011-02-14 18:38:14 +0000222static struct device_operations azalia_ops = {
223 .read_resources = pci_dev_read_resources,
224 .set_resources = pci_dev_set_resources,
225 .enable_resources = pci_dev_enable_resources,
Kerry Shefeed3292011-08-18 18:03:44 +0800226 .init = 0,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000227 .scan_bus = 0,
228 .ops_pci = &lops_pci,
229};
230
231static const struct pci_driver azalia_driver __pci_driver = {
232 .ops = &azalia_ops,
233 .vendor = PCI_VENDOR_ID_ATI,
234 .device = PCI_DEVICE_ID_ATI_SB800_HDA,
235};
236
237
Frank Vibrans63e62b02011-02-14 18:38:14 +0000238static struct device_operations gec_ops = {
239 .read_resources = pci_dev_read_resources,
240 .set_resources = pci_dev_set_resources,
241 .enable_resources = pci_dev_enable_resources,
Kerry Shefeed3292011-08-18 18:03:44 +0800242 .init = 0,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000243 .scan_bus = 0,
244 .ops_pci = &lops_pci,
245};
246
247static const struct pci_driver gec_driver __pci_driver = {
248 .ops = &gec_ops,
249 .vendor = PCI_VENDOR_ID_ATI,
250 .device = PCI_DEVICE_ID_ATI_SB800_GEC,
251};
252
Kerry She3e706b62011-06-24 22:52:15 +0800253/**
254 * @brief Enable PCI Bridge
255 *
256 * PcibConfig [PM_Reg: EAh], PCIDisable [Bit0]
257 * 'PCIDisable' set to 0 to enable P2P bridge.
258 * 'PCIDisable' set to 1 to disable P2P bridge and enable PCI interface pins
259 * to function as GPIO {GPIO 35:0}.
260 */
261static void pci_init(device_t dev)
262{
263 /* PCI Bridge SHOULD be enabled by default according to SB800 rrg,
264 * but actually was disabled in some platform, so I have to enabled it.
265 */
266 RWMEM(ACPI_MMIO_BASE + PMIO_BASE + SB_PMIOA_REGEA, AccWidthUint8, ~BIT0, 0);
267}
Frank Vibrans63e62b02011-02-14 18:38:14 +0000268
Frank Vibrans63e62b02011-02-14 18:38:14 +0000269
270static struct device_operations pci_ops = {
271 .read_resources = pci_bus_read_resources,
272 .set_resources = pci_dev_set_resources,
273 .enable_resources = pci_bus_enable_resources,
Kerry She3e706b62011-06-24 22:52:15 +0800274 .init = pci_init,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000275 .scan_bus = pci_scan_bridge,
276 .reset_bus = pci_bus_reset,
277 .ops_pci = &lops_pci,
278};
279
280static const struct pci_driver pci_driver __pci_driver = {
281 .ops = &pci_ops,
282 .vendor = PCI_VENDOR_ID_ATI,
283 .device = PCI_DEVICE_ID_ATI_SB800_PCI,
284};
285
286
287struct device_operations bridge_ops = {
288 .read_resources = pci_bus_read_resources,
289 .set_resources = pci_dev_set_resources,
290 .enable_resources = pci_bus_enable_resources,
Kerry Shefeed3292011-08-18 18:03:44 +0800291 .init = 0,
Frank Vibrans63e62b02011-02-14 18:38:14 +0000292 .scan_bus = pci_scan_bridge,
293 .enable = 0,
294 .reset_bus = pci_bus_reset,
295 .ops_pci = &lops_pci,
296};
297
Frank Vibrans63e62b02011-02-14 18:38:14 +0000298/**
Kerry Shefeed3292011-08-18 18:03:44 +0800299 * South Bridge CIMx ramstage entry point wrapper.
300 */
301void sb_Before_Pci_Init(void)
302{
303 sb_config->StdHeader.Func = SB_BEFORE_PCI_INIT;
304 AmdSbDispatcher(sb_config);
305}
306
307void sb_After_Pci_Init(void)
308{
309 sb_config->StdHeader.Func = SB_AFTER_PCI_INIT;
310 AmdSbDispatcher(sb_config);
311}
312
313void sb_Mid_Post_Init(void)
314{
315 sb_config->StdHeader.Func = SB_MID_POST_INIT;
316 AmdSbDispatcher(sb_config);
317}
318
319void sb_Late_Post(void)
320{
321 sb_config->StdHeader.Func = SB_LATE_POST_INIT;
322 AmdSbDispatcher(sb_config);
323}
324
zbao9bcdbf82012-04-05 13:18:49 +0800325void sb_Before_Pci_Restore_Init(void)
326{
327 sb_config->StdHeader.Func = SB_BEFORE_PCI_RESTORE_INIT;
328 AmdSbDispatcher(sb_config);
329}
330
331void sb_After_Pci_Restore_Init(void)
332{
333 sb_config->StdHeader.Func = SB_AFTER_PCI_RESTORE_INIT;
334 AmdSbDispatcher(sb_config);
335}
Kerry Shefeed3292011-08-18 18:03:44 +0800336
Mike Loptienc93a75a2014-06-06 15:16:29 -0600337/*
338 * Update the PCI devices with a valid IRQ number
339 * that is set in the mainboard PCI_IRQ structures.
340 */
341static void set_pci_irqs(void *unused)
342{
343 /* Write PCI_INTR regs 0xC00/0xC01 */
344 write_pci_int_table();
345
346 /* Write IRQs for all devicetree enabled devices */
347 write_pci_cfg_irqs();
348}
349
350/*
351 * Hook this function into the PCI state machine
352 * on entry into BS_DEV_ENABLE.
353 */
354BOOT_STATE_INIT_ENTRIES(pci_irq_update) = {
355 BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY,
356 set_pci_irqs, NULL),
357};
358
Kerry Shefeed3292011-08-18 18:03:44 +0800359/**
Frank Vibrans63e62b02011-02-14 18:38:14 +0000360 * @brief SB Cimx entry point sbBeforePciInit wrapper
361 */
362static void sb800_enable(device_t dev)
363{
efdesign9805a89ab2011-06-20 17:38:49 -0700364 struct southbridge_amd_cimx_sb800_config *sb_chip =
365 (struct southbridge_amd_cimx_sb800_config *)(dev->chip_info);
Frank Vibrans63e62b02011-02-14 18:38:14 +0000366
Frank Vibrans63e62b02011-02-14 18:38:14 +0000367 printk(BIOS_DEBUG, "sb800_enable() ");
368
Frank Vibrans63e62b02011-02-14 18:38:14 +0000369 switch (dev->path.pci.devfn) {
370 case (0x11 << 3) | 0: /* 0:11.0 SATA */
Kerry Shefeed3292011-08-18 18:03:44 +0800371 /* the first sb800 device */
Dave Frodin23023a52012-11-13 07:09:12 -0700372 switch (GPP_CFGMODE) { /* config the GPP PCIe ports */
373 case GPP_CFGMODE_X2200:
Dave Frodin8a6f7a72013-04-17 18:21:09 -0600374 abcfg_reg(0xc0, 0x01FF, 0x032); /* x2 Port_0, x2 Port_1 */
Dave Frodin23023a52012-11-13 07:09:12 -0700375 break;
376 case GPP_CFGMODE_X2110:
Dave Frodin8a6f7a72013-04-17 18:21:09 -0600377 abcfg_reg(0xc0, 0x01FF, 0x073); /* x2 Port_0, x1 Port_1&2 */
Dave Frodin23023a52012-11-13 07:09:12 -0700378 break;
379 case GPP_CFGMODE_X1111:
Dave Frodin8a6f7a72013-04-17 18:21:09 -0600380 abcfg_reg(0xc0, 0x01FF, 0x0F4); /* x1 Port_0&1&2&3 */
Dave Frodin23023a52012-11-13 07:09:12 -0700381 break;
382 case GPP_CFGMODE_X4000:
383 default:
384 abcfg_reg(0xc0, 0x01FF, 0x010); /* x4 Port_0 */
385 break;
386 }
Kerry Shefeed3292011-08-18 18:03:44 +0800387 sb800_cimx_config(sb_config);
388
Frank Vibrans63e62b02011-02-14 18:38:14 +0000389 if (dev->enabled) {
Kerry She991f8802011-06-01 01:56:49 +0000390 sb_config->SATAMODE.SataMode.SataController = CIMX_OPTION_ENABLED;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000391 if (1 == sb_chip->boot_switch_sata_ide)
392 sb_config->SATAMODE.SataMode.SataIdeCombMdPriSecOpt = 0; //0 -IDE as primary.
393 else if (0 == sb_chip->boot_switch_sata_ide)
394 sb_config->SATAMODE.SataMode.SataIdeCombMdPriSecOpt = 1; //1 -IDE as secondary.
395 } else {
Kerry She991f8802011-06-01 01:56:49 +0000396 sb_config->SATAMODE.SataMode.SataController = CIMX_OPTION_DISABLED;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000397 }
Frank Vibrans63e62b02011-02-14 18:38:14 +0000398 break;
399
400 case (0x14 << 3) | 0: /* 0:14:0 SMBUS */
Kerry Shefeed3292011-08-18 18:03:44 +0800401 printk(BIOS_INFO, "sm_init().\n");
402 clear_ioapic(IO_APIC_ADDR);
Kyösti Mälkki35546de2014-04-17 15:07:32 +0300403#if CONFIG_CPU_AMD_AGESA
404 /* Assign the ioapic ID the next available number after the processor core local APIC IDs */
405 setup_ioapic(IO_APIC_ADDR, CONFIG_MAX_CPUS);
406#else
Kerry Shefeed3292011-08-18 18:03:44 +0800407 /* I/O APIC IDs are normally limited to 4-bits. Enforce this limit. */
408#if (CONFIG_APIC_ID_OFFSET == 0 && CONFIG_MAX_CPUS * CONFIG_MAX_PHYSICAL_CPUS < 16)
409 /* Assign the ioapic ID the next available number after the processor core local APIC IDs */
410 setup_ioapic(IO_APIC_ADDR, CONFIG_MAX_CPUS * CONFIG_MAX_PHYSICAL_CPUS);
411#elif (CONFIG_APIC_ID_OFFSET > 0)
412 /* Assign the ioapic ID the value 0. Processor APIC IDs follow. */
413 setup_ioapic(IO_APIC_ADDR, 0);
414#else
415#error "The processor APIC IDs must be lifted to make room for the I/O APIC ID"
416#endif
Kyösti Mälkki35546de2014-04-17 15:07:32 +0300417#endif
Frank Vibrans63e62b02011-02-14 18:38:14 +0000418 break;
419
420 case (0x14 << 3) | 1: /* 0:14:1 IDE */
Frank Vibrans63e62b02011-02-14 18:38:14 +0000421 break;
422
423 case (0x14 << 3) | 2: /* 0:14:2 HDA */
424 if (dev->enabled) {
425 if (AZALIA_DISABLE == sb_config->AzaliaController) {
426 sb_config->AzaliaController = AZALIA_AUTO;
427 }
428 printk(BIOS_DEBUG, "hda enabled\n");
429 } else {
430 sb_config->AzaliaController = AZALIA_DISABLE;
431 printk(BIOS_DEBUG, "hda disabled\n");
432 }
Frank Vibrans63e62b02011-02-14 18:38:14 +0000433 break;
434
435
436 case (0x14 << 3) | 3: /* 0:14:3 LPC */
Martin Rothe899e512012-12-05 16:07:11 -0700437 /* Initialize the fans */
438#if CONFIG_SB800_IMC_FAN_CONTROL
439 init_sb800_IMC_fans(dev);
440#elif CONFIG_SB800_MANUAL_FAN_CONTROL
441 init_sb800_MANUAL_fans(dev);
442#endif
Frank Vibrans63e62b02011-02-14 18:38:14 +0000443 break;
444
445 case (0x14 << 3) | 4: /* 0:14:4 PCI */
446 break;
447
448 case (0x14 << 3) | 6: /* 0:14:6 GEC */
449 if (dev->enabled) {
450 sb_config->GecConfig = 0;
451 printk(BIOS_DEBUG, "gec enabled\n");
452 } else {
453 sb_config->GecConfig = 1;
454 printk(BIOS_DEBUG, "gec disabled\n");
455 }
Frank Vibrans63e62b02011-02-14 18:38:14 +0000456 break;
457
458 case (0x15 << 3) | 0: /* 0:15:0 PCIe PortA */
Scott Duplichan8fed77a2011-06-18 10:46:45 -0500459 {
Kerry Shefeed3292011-08-18 18:03:44 +0800460 device_t device;
461 for (device = dev; device; device = device->next) {
462 if (dev->path.type != DEVICE_PATH_PCI) continue;
463 if ((device->path.pci.devfn & ~7) != PCI_DEVFN(0x15,0)) break;
464 sb_config->PORTCONFIG[device->path.pci.devfn & 3].PortCfg.PortPresent = device->enabled;
465 }
Frank Vibrans63e62b02011-02-14 18:38:14 +0000466
Kerry Shefeed3292011-08-18 18:03:44 +0800467 /*
468 * GPP_CFGMODE_X4000: PortA Lanes[3:0]
469 * GPP_CFGMODE_X2200: PortA Lanes[1:0], PortB Lanes[3:2]
470 * GPP_CFGMODE_X2110: PortA Lanes[1:0], PortB Lane2, PortC Lane3
471 * GPP_CFGMODE_X1111: PortA Lanes0, PortB Lane1, PortC Lane2, PortD Lane3
472 */
473 sb_config->GppLinkConfig = sb_chip->gpp_configuration;
Scott Duplichan8fed77a2011-06-18 10:46:45 -0500474 }
Kerry Shefeed3292011-08-18 18:03:44 +0800475 break;
476
477 case (0x12 << 3) | 0: /* 0:12:0 OHCI-USB1 */
478 sb_config->USBMODE.UsbMode.Ohci1 = dev->enabled;
479 break;
480 case (0x12 << 3) | 2: /* 0:12:2 EHCI-USB1 */
481 sb_config->USBMODE.UsbMode.Ehci1 = dev->enabled;
482 break;
483 case (0x13 << 3) | 0: /* 0:13:0 OHCI-USB2 */
484 sb_config->USBMODE.UsbMode.Ohci2 = dev->enabled;
485 break;
486 case (0x13 << 3) | 2: /* 0:13:2 EHCI-USB2 */
487 sb_config->USBMODE.UsbMode.Ehci2 = dev->enabled;
488 break;
489 case (0x14 << 3) | 5: /* 0:14:5 OHCI-USB4 */
490 sb_config->USBMODE.UsbMode.Ohci4 = dev->enabled;
491 break;
492 case (0x16 << 3) | 0: /* 0:16:0 OHCI-USB3 */
493 sb_config->USBMODE.UsbMode.Ohci3 = dev->enabled;
494 break;
495 case (0x16 << 3) | 2: /* 0:16:2 EHCI-USB3 */
496 sb_config->USBMODE.UsbMode.Ehci3 = dev->enabled;
497
Kerry Sheh75df1062011-10-10 19:19:46 +0800498 /* call the CIMX entry at the last sb800 device,
499 * so make sure the mainboard devicetree is complete
500 */
Patrick Georgie1667822012-05-05 15:29:32 +0200501#if CONFIG_HAVE_ACPI_RESUME
zbao9bcdbf82012-04-05 13:18:49 +0800502 if (acpi_slp_type != 3)
503 sb_Before_Pci_Init();
504 else
505 sb_Before_Pci_Restore_Init();
506#else
Kerry Shefeed3292011-08-18 18:03:44 +0800507 sb_Before_Pci_Init();
zbao9bcdbf82012-04-05 13:18:49 +0800508#endif
Kerry Shefeed3292011-08-18 18:03:44 +0800509 break;
Frank Vibrans63e62b02011-02-14 18:38:14 +0000510
511 default:
512 break;
513 }
Frank Vibrans63e62b02011-02-14 18:38:14 +0000514}
515
efdesign9805a89ab2011-06-20 17:38:49 -0700516struct chip_operations southbridge_amd_cimx_sb800_ops = {
Frank Vibrans63e62b02011-02-14 18:38:14 +0000517 CHIP_NAME("ATI SB800")
518 .enable_dev = sb800_enable,
519};