summaryrefslogtreecommitdiffstats
path: root/src/southbridge/ti
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-05-16 13:07:59 +0000
committerStefan Reinauer <stepan@openbios.org>2010-05-16 13:07:59 +0000
commit23f703464a45c4c5df53c40ef3152083f3c921fa (patch)
treef2fc3d925035873bda3cc72af1f7cfeb0a7277e4 /src/southbridge/ti
parent96d8fef5d2151878d96f6b445ec1678a529b4001 (diff)
downloadcoreboot-23f703464a45c4c5df53c40ef3152083f3c921fa.tar.gz
coreboot-23f703464a45c4c5df53c40ef3152083f3c921fa.tar.bz2
coreboot-23f703464a45c4c5df53c40ef3152083f3c921fa.zip
Add TI PCI 7412 support.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5556 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/ti')
-rw-r--r--src/southbridge/ti/Kconfig1
-rw-r--r--src/southbridge/ti/Makefile.inc1
-rw-r--r--src/southbridge/ti/pcixx12/Kconfig22
-rw-r--r--src/southbridge/ti/pcixx12/Makefile.inc21
-rw-r--r--src/southbridge/ti/pcixx12/chip.h31
-rw-r--r--src/southbridge/ti/pcixx12/pcixx12.c72
6 files changed, 148 insertions, 0 deletions
diff --git a/src/southbridge/ti/Kconfig b/src/southbridge/ti/Kconfig
index 79286637dd99..b101d4940ad2 100644
--- a/src/southbridge/ti/Kconfig
+++ b/src/southbridge/ti/Kconfig
@@ -18,3 +18,4 @@
##
source src/southbridge/ti/pci7420/Kconfig
+source src/southbridge/ti/pcixx12/Kconfig
diff --git a/src/southbridge/ti/Makefile.inc b/src/southbridge/ti/Makefile.inc
index 0df59f53ab36..b3d9fbe804c6 100644
--- a/src/southbridge/ti/Makefile.inc
+++ b/src/southbridge/ti/Makefile.inc
@@ -18,3 +18,4 @@
##
subdirs-$(CONFIG_SOUTHBRIDGE_TI_PCI7420) += pci7420
+subdirs-$(CONFIG_SOUTHBRIDGE_TI_PCIXX12) += pcixx12
diff --git a/src/southbridge/ti/pcixx12/Kconfig b/src/southbridge/ti/pcixx12/Kconfig
new file mode 100644
index 000000000000..6181b2e53b2d
--- /dev/null
+++ b/src/southbridge/ti/pcixx12/Kconfig
@@ -0,0 +1,22 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2008-2009 coresystems GmbH
+##
+## 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
+##
+
+config SOUTHBRIDGE_TI_PCIXX12
+ bool
+
diff --git a/src/southbridge/ti/pcixx12/Makefile.inc b/src/southbridge/ti/pcixx12/Makefile.inc
new file mode 100644
index 000000000000..41d1e0da3ca4
--- /dev/null
+++ b/src/southbridge/ti/pcixx12/Makefile.inc
@@ -0,0 +1,21 @@
+##
+## This file is part of the coreboot project.
+##
+## Copyright (C) 2008-2009 coresystems GmbH
+##
+## 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
+##
+
+driver-y += pcixx12.o
+
diff --git a/src/southbridge/ti/pcixx12/chip.h b/src/southbridge/ti/pcixx12/chip.h
new file mode 100644
index 000000000000..75fe831375aa
--- /dev/null
+++ b/src/southbridge/ti/pcixx12/chip.h
@@ -0,0 +1,31 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * (C) Copyright 2008 coresystems GmbH
+ *
+ * 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
+ */
+
+#ifndef _SOUTHBRIDGE_TI_PCIXX12
+#define _SOUTHBRIDGE_TI_PCIXX12
+
+extern struct chip_operations southbridge_ti_pcixx12_ops;
+
+struct southbridge_ti_pcixx12_config {
+ int dummy;
+
+};
+
+#endif /* _SOUTHBRIDGE_TI_PCIXX12 */
diff --git a/src/southbridge/ti/pcixx12/pcixx12.c b/src/southbridge/ti/pcixx12/pcixx12.c
new file mode 100644
index 000000000000..782face3b642
--- /dev/null
+++ b/src/southbridge/ti/pcixx12/pcixx12.c
@@ -0,0 +1,72 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * (C) Copyright 2008 coresystems GmbH
+ *
+ * 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 <arch/io.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
+#include <device/pci_ids.h>
+#include <console/console.h>
+#include <device/cardbus.h>
+#include "chip.h"
+
+static void pcixx12_init(device_t dev)
+{
+ /* cardbus controller function 1 for CF Socket */
+ printk(BIOS_DEBUG, "TI PCIxx12 init\n");
+}
+
+static void pcixx12_read_resources(device_t dev)
+{
+ cardbus_read_resources(dev);
+}
+
+static void pcixx12_set_resources(device_t dev)
+{
+ printk(BIOS_DEBUG, "%s In set resources \n",dev_path(dev));
+
+ pci_dev_set_resources(dev);
+
+ printk(BIOS_DEBUG, "%s done set resources \n",dev_path(dev));
+}
+
+static struct device_operations ti_pcixx12_ops = {
+ .read_resources = pcixx12_read_resources,
+ .set_resources = pcixx12_set_resources,
+ .enable_resources = cardbus_enable_resources,
+ .init = pcixx12_init,
+ .scan_bus = cardbus_scan_bridge,
+};
+
+static const struct pci_driver ti_pcixx12_driver __pci_driver = {
+ .ops = &ti_pcixx12_ops,
+ .vendor = 0x104c,
+ .device = 0x8039,
+};
+
+static void southbridge_init(device_t dev)
+{
+ // struct southbridge_ti_pcixx12_config *config = dev->chip_info;
+}
+
+struct chip_operations southbridge_ti_pcixx12_ops = {
+ CHIP_NAME("Texas Instruments PCIxx12 Cardbus Controller")
+ .enable_dev = southbridge_init,
+};