blob: e3acf856ecb1d778a8cc5248c6ce789661bd6127 [file] [log] [blame]
Uwe Hermannb80dbf02007-04-22 19:08:13 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannb80dbf02007-04-22 19:08:13 +00003 *
4 * Copyright (C) 2005 Linux Networx
5 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
6 * Copyright (C) 2005 Ronald G. Minnich <rminnich@gmail.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Yinghai Lu304f24c2005-07-08 02:56:47 +000021
22#include <console/console.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <device/cardbus.h>
27
Uwe Hermannd453dd02010-10-18 00:00:57 +000028/*
29 * I don't think this code is quite correct but it is close.
Yinghai Lu304f24c2005-07-08 02:56:47 +000030 * Anyone with a cardbus bridge and a little time should be able
31 * to make it usable quickly. -- Eric Biederman 24 March 2005
32 */
33
34/*
Uwe Hermannd453dd02010-10-18 00:00:57 +000035 * IO should be max 256 bytes. However, since we may have a P2P bridge below
36 * a cardbus bridge, we need 4K.
Yinghai Lu304f24c2005-07-08 02:56:47 +000037 */
Uwe Hermannd453dd02010-10-18 00:00:57 +000038#define CARDBUS_IO_SIZE 4096
39#define CARDBUS_MEM_SIZE (32 * 1024 * 1024)
Yinghai Lu304f24c2005-07-08 02:56:47 +000040
Uwe Hermannd453dd02010-10-18 00:00:57 +000041static void cardbus_record_bridge_resource(device_t dev, resource_t moving,
42 resource_t min_size, unsigned int index, unsigned long type)
Yinghai Lu304f24c2005-07-08 02:56:47 +000043{
Yinghai Lu304f24c2005-07-08 02:56:47 +000044 struct resource *resource;
Uwe Hermannd453dd02010-10-18 00:00:57 +000045
46 /* Initialize the constraints on the current bus. */
Myles Watson03adcfd2010-06-07 16:51:11 +000047 resource = NULL;
Yinghai Lu304f24c2005-07-08 02:56:47 +000048 if (moving) {
49 unsigned long gran;
50 resource_t step;
Uwe Hermannd453dd02010-10-18 00:00:57 +000051
Yinghai Lu304f24c2005-07-08 02:56:47 +000052 resource = new_resource(dev, index);
53 resource->size = 0;
54 gran = 0;
55 step = 1;
Myles Watson03adcfd2010-06-07 16:51:11 +000056 while ((moving & step) == 0) {
Yinghai Lu304f24c2005-07-08 02:56:47 +000057 gran += 1;
58 step <<= 1;
59 }
60 resource->gran = gran;
61 resource->align = gran;
62 resource->limit = moving | (step - 1);
63 resource->flags = type;
Uwe Hermannd453dd02010-10-18 00:00:57 +000064
65 /*
66 * Don't let the minimum size exceed what we
Yinghai Lu304f24c2005-07-08 02:56:47 +000067 * can put in the resource.
68 */
Uwe Hermannd453dd02010-10-18 00:00:57 +000069 if ((min_size - 1) > resource->limit)
Yinghai Lu304f24c2005-07-08 02:56:47 +000070 min_size = resource->limit + 1;
Uwe Hermannd453dd02010-10-18 00:00:57 +000071
Yinghai Lu304f24c2005-07-08 02:56:47 +000072 resource->size = min_size;
73 }
74 return;
75}
76
Uwe Hermannd453dd02010-10-18 00:00:57 +000077static void cardbus_size_bridge_resource(device_t dev, unsigned int index)
Yinghai Lu304f24c2005-07-08 02:56:47 +000078{
79 struct resource *resource;
80 resource_t min_size;
Uwe Hermannd453dd02010-10-18 00:00:57 +000081
Yinghai Lu304f24c2005-07-08 02:56:47 +000082 resource = find_resource(dev, index);
83 if (resource) {
84 min_size = resource->size;
Uwe Hermannd453dd02010-10-18 00:00:57 +000085 /*
86 * Always allocate at least the miniumum size to a
Yinghai Lu304f24c2005-07-08 02:56:47 +000087 * cardbus bridge in case a new card is plugged in.
88 */
Uwe Hermannd453dd02010-10-18 00:00:57 +000089 if (resource->size < min_size)
Yinghai Lu304f24c2005-07-08 02:56:47 +000090 resource->size = min_size;
Yinghai Lu304f24c2005-07-08 02:56:47 +000091 }
92}
93
94void cardbus_read_resources(device_t dev)
95{
96 resource_t moving_base, moving_limit, moving;
97 unsigned long type;
Uwe Hermannd453dd02010-10-18 00:00:57 +000098 u16 ctl;
Ronald G. Minnich43225bc2005-11-22 00:07:02 +000099
Uwe Hermannd453dd02010-10-18 00:00:57 +0000100 /* See if needs a card control registers base address. */
Ronald G. Minnich43225bc2005-11-22 00:07:02 +0000101
102 pci_get_resource(dev, PCI_BASE_ADDRESS_0);
103
104 compact_resources(dev);
105
Uwe Hermannd453dd02010-10-18 00:00:57 +0000106 /* See which bridge I/O resources are implemented. */
107 moving_base = pci_moving_config32(dev, PCI_CB_IO_BASE_0);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000108 moving_limit = pci_moving_config32(dev, PCI_CB_IO_LIMIT_0);
109 moving = moving_base & moving_limit;
110
Uwe Hermannd453dd02010-10-18 00:00:57 +0000111 /* Initialize the I/O space constraints on the current bus. */
Yinghai Lu304f24c2005-07-08 02:56:47 +0000112 cardbus_record_bridge_resource(dev, moving, CARDBUS_IO_SIZE,
Uwe Hermannd453dd02010-10-18 00:00:57 +0000113 PCI_CB_IO_BASE_0, IORESOURCE_IO);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000114 cardbus_size_bridge_resource(dev, PCI_CB_IO_BASE_0);
115
Uwe Hermannd453dd02010-10-18 00:00:57 +0000116 /* See which bridge I/O resources are implemented. */
117 moving_base = pci_moving_config32(dev, PCI_CB_IO_BASE_1);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000118 moving_limit = pci_moving_config32(dev, PCI_CB_IO_LIMIT_1);
119 moving = moving_base & moving_limit;
120
Uwe Hermannd453dd02010-10-18 00:00:57 +0000121 /* Initialize the I/O space constraints on the current bus. */
Yinghai Lu304f24c2005-07-08 02:56:47 +0000122 cardbus_record_bridge_resource(dev, moving, CARDBUS_IO_SIZE,
Uwe Hermannd453dd02010-10-18 00:00:57 +0000123 PCI_CB_IO_BASE_1, IORESOURCE_IO);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000124
Uwe Hermannd453dd02010-10-18 00:00:57 +0000125 /* If I can, enable prefetch for mem0. */
Yinghai Lu304f24c2005-07-08 02:56:47 +0000126 ctl = pci_read_config16(dev, PCI_CB_BRIDGE_CONTROL);
127 ctl &= ~PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
128 ctl &= ~PCI_CB_BRIDGE_CTL_PREFETCH_MEM1;
129 ctl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
130 pci_write_config16(dev, PCI_CB_BRIDGE_CONTROL, ctl);
131 ctl = pci_read_config16(dev, PCI_CB_BRIDGE_CONTROL);
132
Uwe Hermannd453dd02010-10-18 00:00:57 +0000133 /* See which bridge memory resources are implemented. */
134 moving_base = pci_moving_config32(dev, PCI_CB_MEMORY_BASE_0);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000135 moving_limit = pci_moving_config32(dev, PCI_CB_MEMORY_LIMIT_0);
136 moving = moving_base & moving_limit;
137
Uwe Hermannd453dd02010-10-18 00:00:57 +0000138 /* Initialize the memory space constraints on the current bus. */
Yinghai Lu304f24c2005-07-08 02:56:47 +0000139 type = IORESOURCE_MEM;
Uwe Hermannd453dd02010-10-18 00:00:57 +0000140 if (ctl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)
Yinghai Lu304f24c2005-07-08 02:56:47 +0000141 type |= IORESOURCE_PREFETCH;
Yinghai Lu304f24c2005-07-08 02:56:47 +0000142 cardbus_record_bridge_resource(dev, moving, CARDBUS_MEM_SIZE,
Uwe Hermannd453dd02010-10-18 00:00:57 +0000143 PCI_CB_MEMORY_BASE_0, type);
144 if (type & IORESOURCE_PREFETCH)
Yinghai Lu304f24c2005-07-08 02:56:47 +0000145 cardbus_size_bridge_resource(dev, PCI_CB_MEMORY_BASE_0);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000146
Uwe Hermannd453dd02010-10-18 00:00:57 +0000147 /* See which bridge memory resources are implemented. */
148 moving_base = pci_moving_config32(dev, PCI_CB_MEMORY_BASE_1);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000149 moving_limit = pci_moving_config32(dev, PCI_CB_MEMORY_LIMIT_1);
150 moving = moving_base & moving_limit;
151
Uwe Hermannd453dd02010-10-18 00:00:57 +0000152 /* Initialize the memory space constraints on the current bus. */
Yinghai Lu304f24c2005-07-08 02:56:47 +0000153 cardbus_record_bridge_resource(dev, moving, CARDBUS_MEM_SIZE,
Uwe Hermannd453dd02010-10-18 00:00:57 +0000154 PCI_CB_MEMORY_BASE_1, IORESOURCE_MEM);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000155 cardbus_size_bridge_resource(dev, PCI_CB_MEMORY_BASE_1);
156
157 compact_resources(dev);
158}
159
160void cardbus_enable_resources(device_t dev)
161{
Uwe Hermannd453dd02010-10-18 00:00:57 +0000162 u16 ctrl;
163
Yinghai Lu304f24c2005-07-08 02:56:47 +0000164 ctrl = pci_read_config16(dev, PCI_CB_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000165 ctrl |= (dev->link_list->bridge_ctrl & (
Stefan Reinauer14e22772010-04-27 06:56:47 +0000166 PCI_BRIDGE_CTL_PARITY |
167 PCI_BRIDGE_CTL_SERR |
Yinghai Lu304f24c2005-07-08 02:56:47 +0000168 PCI_BRIDGE_CTL_NO_ISA |
169 PCI_BRIDGE_CTL_VGA |
170 PCI_BRIDGE_CTL_MASTER_ABORT |
171 PCI_BRIDGE_CTL_BUS_RESET));
Uwe Hermannd453dd02010-10-18 00:00:57 +0000172 /* Error check */
173 ctrl |= (PCI_CB_BRIDGE_CTL_PARITY + PCI_CB_BRIDGE_CTL_SERR);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000174 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000175 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
176
177 pci_dev_enable_resources(dev);
Yinghai Lu304f24c2005-07-08 02:56:47 +0000178}
179
Yinghai Lu304f24c2005-07-08 02:56:47 +0000180struct device_operations default_cardbus_ops_bus = {
181 .read_resources = cardbus_read_resources,
182 .set_resources = pci_dev_set_resources,
183 .enable_resources = cardbus_enable_resources,
Uwe Hermannd453dd02010-10-18 00:00:57 +0000184 .init = 0,
185 .scan_bus = pci_scan_bridge,
Yinghai Lu304f24c2005-07-08 02:56:47 +0000186 .enable = 0,
187 .reset_bus = pci_bus_reset,
188};