aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/sb600/sb600.c
diff options
context:
space:
mode:
authorMichael Xie <Michael.Xie@amd.com>2008-09-22 13:11:39 +0000
committerStefan Reinauer <stepan@openbios.org>2008-09-22 13:11:39 +0000
commit7586cef37aace94f1558a391b25245f08523ab95 (patch)
tree92dd060f73e441bd702b26bb04231d4be9d0ecc1 /src/southbridge/amd/sb600/sb600.c
parent06755e404eb4b97dab5bc5ff90443f7d7d74d3cf (diff)
Patch for AMD SB600 chipset.
Most of the functions in SB600 are enabled except power management. Signed-off-by: Michael Xie <Michael.Xie@amd.com> Reviewed-by: Marc Jones <marc.jones@amd.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3589 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/amd/sb600/sb600.c')
-rw-r--r--src/southbridge/amd/sb600/sb600.c235
1 files changed, 235 insertions, 0 deletions
diff --git a/src/southbridge/amd/sb600/sb600.c b/src/southbridge/amd/sb600/sb600.c
new file mode 100644
index 0000000000..b1b17f0022
--- /dev/null
+++ b/src/southbridge/amd/sb600/sb600.c
@@ -0,0 +1,235 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2008 Advanced Micro Devices, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <console/console.h>
+
+#include <arch/io.h>
+
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ids.h>
+#include <device/pci_ops.h>
+#include "sb600.h"
+
+static device_t find_sm_dev(device_t dev, u32 devfn)
+{
+ device_t sm_dev;
+
+ sm_dev = dev_find_slot(dev->bus->secondary, devfn);
+ if (!sm_dev)
+ return sm_dev;
+
+ if ((sm_dev->vendor != PCI_VENDOR_ID_ATI) ||
+ ((sm_dev->device != PCI_DEVICE_ID_ATI_SB600_SM))) {
+ u32 id;
+ id = pci_read_config32(sm_dev, PCI_VENDOR_ID);
+ if ((id !=
+ (PCI_VENDOR_ID_ATI | (PCI_DEVICE_ID_ATI_SB600_SM << 16))))
+ {
+ sm_dev = 0;
+ }
+ }
+
+ return sm_dev;
+}
+
+void set_sm_enable_bits(device_t sm_dev, u32 reg_pos, u32 mask, u32 val)
+{
+ u32 reg_old, reg;
+ reg = reg_old = pci_read_config32(sm_dev, reg_pos);
+ reg &= ~mask;
+ reg |= val;
+ if (reg != reg_old) {
+ pci_write_config32(sm_dev, reg_pos, reg);
+ }
+}
+
+static void pmio_write_index(unsigned long port_base, u8 reg, u8 value)
+{
+ outb(reg, port_base);
+ outb(value, port_base + 1);
+}
+
+static u8 pmio_read_index(unsigned long port_base, u8 reg)
+{
+ outb(reg, port_base);
+ return inb(port_base + 1);
+}
+
+void pm_iowrite(u8 reg, u8 value)
+{
+ unsigned long port_base = 0xcd6;
+ pmio_write_index(port_base, reg, value);
+}
+
+u8 pm_ioread(u8 reg)
+{
+ unsigned long port_base = 0xcd6;
+ return pmio_read_index(port_base, reg);
+}
+
+void pm2_iowrite(u8 reg, u8 value)
+{
+ unsigned long port_base = 0xcd0;
+ pmio_write_index(port_base, reg, value);
+}
+
+u8 pm2_ioread(u8 reg)
+{
+ unsigned long port_base = 0xcd0;
+ return pmio_read_index(port_base, reg);
+}
+
+static void set_pmio_enable_bits(device_t sm_dev, u32 reg_pos,
+ u32 mask, u32 val)
+{
+ u8 reg_old, reg;
+ reg = reg_old = pm_ioread(reg_pos);
+ reg &= ~mask;
+ reg |= val;
+ if (reg != reg_old) {
+ pm_iowrite(reg_pos, reg);
+ }
+}
+
+void sb600_enable(device_t dev)
+{
+ device_t sm_dev = 0;
+ device_t bus_dev = 0;
+ int index = -1;
+ u32 deviceid;
+ u32 vendorid;
+
+ /* struct southbridge_ati_sb600_config *conf; */
+ /* conf = dev->chip_info; */
+ int i;
+
+ u32 devfn;
+
+ printk_debug("sb600_enable()\n");
+
+/*
+* 0:12.0 SATA bit 8 of sm_dev 0xac : 1 - enable, default + 32 * 3
+* 0:13.1 USB-1 bit 2 of sm_dev 0x68
+* 0:13.2 USB-2 bit 3 of sm_dev 0x68
+* 0:13.3 USB-3 bit 4 of sm_dev 0x68
+* 0:13.4 USB-4 bit 5 of sm_dev 0x68
+* 0:13.5 USB2 bit 0 of sm_dev 0x68 : 1 - enable, default
+* 0:14.0 SMBUS 0
+* 0:14.1 IDE 1
+* 0:14.2 HDA bit 3 of pm_io 0x59 : 1 - enable, default + 32 * 4
+* 0:14.3 LPC bit 20 of sm_dev 0x64 : 0 - disable, default + 32 * 1
+* 0:14.4 PCI 4
+* 0:14.5 ACI bit 0 of pm_io 0x59 : 0 - enable, default
+* 0:14.6 MCI bit 1 of pm_io 0x59 : 0 - enable, default
+*/
+ if (dev->device == 0x0000) {
+ vendorid = pci_read_config32(dev, PCI_VENDOR_ID);
+ deviceid = (vendorid >> 16) & 0xffff;
+ vendorid &= 0xffff;
+ } else {
+ vendorid = dev->vendor;
+ deviceid = dev->device;
+ }
+ bus_dev = dev->bus->dev;
+ if ((bus_dev->vendor == PCI_VENDOR_ID_ATI) &&
+ (bus_dev->device == PCI_DEVICE_ID_ATI_SB600_PCI)) {
+ devfn = (bus_dev->path.u.pci.devfn) & ~7;
+ sm_dev = find_sm_dev(bus_dev, devfn);
+ if (!sm_dev)
+ return;
+
+ /* something under 00:01.0 */
+ switch (dev->path.u.pci.devfn) {
+ case 5 << 3:
+ ;
+ }
+
+ return;
+ }
+
+ i = (dev->path.u.pci.devfn) & ~7;
+ i += (2 << 3);
+ for (devfn = (0x14 << 3); devfn <= i; devfn += (1 << 3)) {
+ sm_dev = find_sm_dev(dev, devfn);
+ if (sm_dev)
+ break;
+ }
+ if (!sm_dev)
+ return;
+
+ switch (dev->path.u.pci.devfn - (devfn - (0x14 << 3))) {
+ case (0x12 << 3) | 0:
+ index = 8;
+ set_sm_enable_bits(sm_dev, 0xac, 1 << index,
+ (dev->enabled ? 1 : 0) << index);
+ index += 32 * 3;
+ break;
+ case (0x13 << 3) | 0:
+ case (0x13 << 3) | 1:
+ case (0x13 << 3) | 2:
+ case (0x13 << 3) | 3:
+ case (0x13 << 3) | 4:
+ case (0x13 << 3) | 5:
+ index = dev->path.u.pci.devfn & 7;
+ index++;
+ index %= 6;
+ set_sm_enable_bits(sm_dev, 0x68, 1 << index,
+ (dev->enabled ? 1 : 0) << index);
+ index += 32 * 2;
+ break;
+ case (0x14 << 3) | 0:
+ index = 0;
+ break;
+ case (0x14 << 3) | 1:
+ index = 1;
+ break;
+ case (0x14 << 3) | 2:
+ index = 3;
+ set_pmio_enable_bits(sm_dev, 0x59, 1 << index,
+ (dev->enabled ? 1 : 0) << index);
+ index += 32 * 4;
+ break;
+ case (0x14 << 3) | 3:
+ index = 20;
+ set_sm_enable_bits(sm_dev, 0x64, 1 << index,
+ (dev->enabled ? 1 : 0) << index);
+ index += 32 * 1;
+ break;
+ case (0x14 << 3) | 4:
+ index = 4;
+ break;
+ case (0x14 << 3) | 5:
+ case (0x14 << 3) | 6:
+ index = dev->path.u.pci.devfn & 7;
+ index -= 5;
+ set_pmio_enable_bits(sm_dev, 0x59, 1 << index,
+ (dev->enabled ? 0 : 1) << index);
+ index += 32 * 4;
+ break;
+ default:
+ printk_debug("unknown dev: %s deviceid=%4x\n", dev_path(dev),
+ deviceid);
+ }
+}
+
+struct chip_operations southbridge_amd_sb600_ops = {
+ CHIP_NAME("ATI SB600")
+ .enable_dev = sb600_enable,
+};