Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the coreboot project. |
| 3 | * |
| 4 | * Copyright (C) 2010 Marc Bertens <mbertens@xs4all.nl> |
| 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; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 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 |
Patrick Georgi | b890a12 | 2015-03-26 15:17:45 +0100 | [diff] [blame] | 18 | * Foundation, Inc. |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 19 | */ |
Uwe Hermann | c6a1062 | 2010-10-17 19:30:58 +0000 | [diff] [blame] | 20 | |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 21 | #include <device/device.h> |
| 22 | #include <device/pci.h> |
| 23 | #include <device/pci_ids.h> |
| 24 | #include <device/pci_ops.h> |
Sven Schnelle | 5c72a87 | 2011-04-20 08:58:30 +0000 | [diff] [blame] | 25 | #include <device/cardbus.h> |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 26 | #include <console/console.h> |
Sven Schnelle | 5f22f30 | 2011-04-20 08:58:16 +0000 | [diff] [blame] | 27 | #include <arch/io.h> |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 28 | #include "chip.h" |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 29 | |
| 30 | static void ti_pci1x2y_init(struct device *dev) |
| 31 | { |
Uwe Hermann | 2d1d9ce | 2010-12-26 14:12:38 +0000 | [diff] [blame] | 32 | |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 33 | printk(BIOS_INFO, "Init of Texas Instruments PCI1x2x PCMCIA/CardBus controller\n"); |
| 34 | struct southbridge_ti_pci1x2x_config *conf = dev->chip_info; |
| 35 | |
| 36 | if (conf) { |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 37 | /* System control (offset 0x80) */ |
| 38 | pci_write_config32(dev, 0x80, conf->scr); |
| 39 | /* Multifunction routing */ |
| 40 | pci_write_config32(dev, 0x8C, conf->mrr); |
| 41 | } |
Uwe Hermann | 2d1d9ce | 2010-12-26 14:12:38 +0000 | [diff] [blame] | 42 | /* Set the device control register (0x92) accordingly. */ |
| 43 | pci_write_config8(dev, 0x92, pci_read_config8(dev, 0x92) | 0x02); |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Sven Schnelle | 5f22f30 | 2011-04-20 08:58:16 +0000 | [diff] [blame] | 46 | static void ti_pci1x2y_set_subsystem(device_t dev, unsigned vendor, unsigned device) |
| 47 | { |
| 48 | /* |
| 49 | * Enable change sub-vendor ID. Clear the bit 5 to enable to write |
| 50 | * to the sub-vendor/device ids at 40 and 42. |
| 51 | */ |
| 52 | pci_write_config32(dev, 0x80, pci_read_config32(dev, 0x080) & ~0x10); |
| 53 | pci_write_config16(dev, 0x40, vendor); |
| 54 | pci_write_config16(dev, 0x42, device); |
| 55 | pci_write_config32(dev, 0x80, pci_read_config32(dev, 0x80) | 0x10); |
| 56 | } |
| 57 | |
| 58 | static struct pci_operations ti_pci1x2y_pci_ops = { |
| 59 | .set_subsystem = ti_pci1x2y_set_subsystem, |
| 60 | }; |
| 61 | |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 62 | struct device_operations southbridge_ti_pci1x2x_pciops = { |
Sven Schnelle | 5c72a87 | 2011-04-20 08:58:30 +0000 | [diff] [blame] | 63 | .read_resources = cardbus_read_resources, |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 64 | .set_resources = pci_dev_set_resources, |
Sven Schnelle | 5c72a87 | 2011-04-20 08:58:30 +0000 | [diff] [blame] | 65 | .enable_resources = cardbus_enable_resources, |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 66 | .init = ti_pci1x2y_init, |
| 67 | .scan_bus = 0, |
Sven Schnelle | 5f22f30 | 2011-04-20 08:58:16 +0000 | [diff] [blame] | 68 | .ops_pci = &ti_pci1x2y_pci_ops, |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 69 | }; |
| 70 | |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 71 | static const struct pci_driver ti_pci1225_driver __pci_driver = { |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 72 | .ops = &southbridge_ti_pci1x2x_pciops, |
Uwe Hermann | 2d1d9ce | 2010-12-26 14:12:38 +0000 | [diff] [blame] | 73 | .vendor = PCI_VENDOR_ID_TI, |
| 74 | .device = PCI_DEVICE_ID_TI_1225, |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 75 | }; |
| 76 | |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 77 | static const struct pci_driver ti_pci1420_driver __pci_driver = { |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 78 | .ops = &southbridge_ti_pci1x2x_pciops, |
Uwe Hermann | 2d1d9ce | 2010-12-26 14:12:38 +0000 | [diff] [blame] | 79 | .vendor = PCI_VENDOR_ID_TI, |
| 80 | .device = PCI_DEVICE_ID_TI_1420, |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 81 | }; |
Myles Watson | 356f848 | 2010-06-07 20:15:54 +0000 | [diff] [blame] | 82 | |
Sven Schnelle | 20f7f3b | 2011-04-20 08:58:08 +0000 | [diff] [blame] | 83 | static const struct pci_driver ti_pci1510_driver __pci_driver = { |
| 84 | .ops = &southbridge_ti_pci1x2x_pciops, |
| 85 | .vendor = PCI_VENDOR_ID_TI, |
| 86 | .device = PCI_DEVICE_ID_TI_1510, |
| 87 | }; |
| 88 | |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 89 | static const struct pci_driver ti_pci1520_driver __pci_driver = { |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 90 | .ops = &southbridge_ti_pci1x2x_pciops, |
Uwe Hermann | 2d1d9ce | 2010-12-26 14:12:38 +0000 | [diff] [blame] | 91 | .vendor = PCI_VENDOR_ID_TI, |
| 92 | .device = PCI_DEVICE_ID_TI_1520, |
Marc Bertens | 2ad8ab8 | 2010-06-04 19:53:55 +0000 | [diff] [blame] | 93 | }; |
Sven Schnelle | baec034 | 2011-04-20 08:57:53 +0000 | [diff] [blame] | 94 | |
| 95 | struct chip_operations southbridge_ti_pci1x2x_ops = { |
| 96 | CHIP_NAME("TI PCI1x2x Cardbus controller") |
| 97 | }; |