patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / pci / hotplug / shpchprm_nonacpi.c
1 /*
2  * SHPCHPRM NONACPI: PHP Resource Manager for Non-ACPI/Legacy platform
3  *
4  * Copyright (C) 1995,2001 Compaq Computer Corporation
5  * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6  * Copyright (C) 2001 IBM Corp.
7  * Copyright (C) 2003-2004 Intel Corporation
8  *
9  * All rights reserved.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or (at
14  * your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19  * NON INFRINGEMENT.  See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  *
26  * Send feedback to <greg@kroah.com>, <dely.l.sy@intel.com>
27  *
28  */
29
30 #include <linux/config.h>
31 #include <linux/module.h>
32 #include <linux/kernel.h>
33 #include <linux/types.h>
34 #include <linux/pci.h>
35 #include <linux/init.h>
36 #include <asm/uaccess.h>
37 #ifdef CONFIG_IA64
38 #include <asm/iosapic.h>
39 #endif
40 #include "shpchp.h"
41 #include "shpchprm.h"
42 #include "shpchprm_nonacpi.h"
43
44 void shpchprm_cleanup(void)
45 {
46         return;
47 }
48
49 int shpchprm_print_pirt(void)
50 {
51         return 0;
52 }
53
54 int shpchprm_get_physical_slot_number(struct controller *ctrl, u32 *sun, u8 busnum, u8 devnum)
55 {
56         int     offset = devnum - ctrl->slot_device_offset;
57
58         dbg("%s: ctrl->slot_num_inc %d, offset %d\n", __FUNCTION__, ctrl->slot_num_inc, offset);
59         *sun = (u8) (ctrl->first_slot + ctrl->slot_num_inc * offset);
60         return 0;
61 }
62
63 static void print_pci_resource ( struct pci_resource    *aprh)
64 {
65         struct pci_resource     *res;
66
67         for (res = aprh; res; res = res->next)
68                 dbg("        base= 0x%x length= 0x%x\n", res->base, res->length);
69 }
70
71
72 static void phprm_dump_func_res( struct pci_func *fun)
73 {
74         struct pci_func *func = fun;
75
76         if (func->bus_head) {
77                 dbg(":    BUS Resources:\n");
78                 print_pci_resource (func->bus_head);
79         }
80         if (func->io_head) {
81                 dbg(":    IO Resources:\n");
82                 print_pci_resource (func->io_head);
83         }
84         if (func->mem_head) {
85                 dbg(":    MEM Resources:\n");
86                 print_pci_resource (func->mem_head);
87         }
88         if (func->p_mem_head) {
89                 dbg(":    PMEM Resources:\n");
90                 print_pci_resource (func->p_mem_head);
91         }
92 }
93
94 static int phprm_get_used_resources (
95         struct controller *ctrl,
96         struct pci_func *func
97         )
98 {
99         return shpchp_save_used_resources (ctrl, func, !DISABLE_CARD);
100 }
101
102 static int phprm_delete_resource(
103         struct pci_resource **aprh,
104         ulong base,
105         ulong size)
106 {
107         struct pci_resource *res;
108         struct pci_resource *prevnode;
109         struct pci_resource *split_node;
110         ulong tbase;
111
112         shpchp_resource_sort_and_combine(aprh);
113
114         for (res = *aprh; res; res = res->next) {
115                 if (res->base > base)
116                         continue;
117
118                 if ((res->base + res->length) < (base + size))
119                         continue;
120
121                 if (res->base < base) {
122                         tbase = base;
123
124                         if ((res->length - (tbase - res->base)) < size)
125                                 continue;
126
127                         split_node = (struct pci_resource *) kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
128                         if (!split_node)
129                                 return -ENOMEM;
130
131                         split_node->base = res->base;
132                         split_node->length = tbase - res->base;
133                         res->base = tbase;
134                         res->length -= split_node->length;
135
136                         split_node->next = res->next;
137                         res->next = split_node;
138                 }
139
140                 if (res->length >= size) {
141                         split_node = (struct pci_resource*) kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
142                         if (!split_node)
143                                 return -ENOMEM;
144
145                         split_node->base = res->base + size;
146                         split_node->length = res->length - size;
147                         res->length = size;
148
149                         split_node->next = res->next;
150                         res->next = split_node;
151                 }
152
153                 if (*aprh == res) {
154                         *aprh = res->next;
155                 } else {
156                         prevnode = *aprh;
157                         while (prevnode->next != res)
158                                 prevnode = prevnode->next;
159
160                         prevnode->next = res->next;
161                 }
162                 res->next = NULL;
163                 kfree(res);
164                 break;
165         }
166
167         return 0;
168 }
169
170
171 static int phprm_delete_resources(
172         struct pci_resource **aprh,
173         struct pci_resource *this
174         )
175 {
176         struct pci_resource *res;
177
178         for (res = this; res; res = res->next)
179                 phprm_delete_resource(aprh, res->base, res->length);
180
181         return 0;
182 }
183
184
185 static int configure_existing_function(
186         struct controller *ctrl,
187         struct pci_func *func
188         )
189 {
190         int rc;
191
192         /* see how much resources the func has used. */
193         rc = phprm_get_used_resources (ctrl, func);
194
195         if (!rc) {
196                 /* subtract the resources used by the func from ctrl resources */
197                 rc  = phprm_delete_resources (&ctrl->bus_head, func->bus_head);
198                 rc |= phprm_delete_resources (&ctrl->io_head, func->io_head);
199                 rc |= phprm_delete_resources (&ctrl->mem_head, func->mem_head);
200                 rc |= phprm_delete_resources (&ctrl->p_mem_head, func->p_mem_head);
201                 if (rc)
202                         warn("aCEF: cannot del used resources\n");
203         } else
204                 err("aCEF: cannot get used resources\n");
205
206         return rc;
207 }
208
209 static int bind_pci_resources_to_slots ( struct controller *ctrl)
210 {
211         struct pci_func *func;
212         int busn = ctrl->slot_bus;
213         int devn, funn;
214         u32     vid;
215
216         for (devn = 0; devn < 32; devn++) {
217                 for (funn = 0; funn < 8; funn++) {
218                         /*
219                         if (devn == ctrl->device && funn == ctrl->function)
220                                 continue;
221                          */
222                         /* find out if this entry is for an occupied slot */
223                         vid = 0xFFFFFFFF;
224
225                         pci_bus_read_config_dword(ctrl->pci_dev->subordinate, PCI_DEVFN(devn, funn), PCI_VENDOR_ID, &vid);
226
227                         if (vid != 0xFFFFFFFF) {
228                                 func = shpchp_slot_find(busn, devn, funn);
229                                 if (!func)
230                                         continue;
231                                 configure_existing_function(ctrl, func);
232                                 dbg("aCCF:existing PCI 0x%x Func ResourceDump\n", ctrl->bus);
233                                 phprm_dump_func_res(func);
234                         }
235                 }
236         }
237
238         return 0;
239 }
240
241 static void phprm_dump_ctrl_res( struct controller *ctlr)
242 {
243         struct controller *ctrl = ctlr;
244
245         if (ctrl->bus_head) {
246                 dbg(":    BUS Resources:\n");
247                 print_pci_resource (ctrl->bus_head);
248         }
249         if (ctrl->io_head) {
250                 dbg(":    IO Resources:\n");
251                 print_pci_resource (ctrl->io_head);
252         }
253         if (ctrl->mem_head) {
254                 dbg(":    MEM Resources:\n");
255                 print_pci_resource (ctrl->mem_head);
256         }
257         if (ctrl->p_mem_head) {
258                 dbg(":    PMEM Resources:\n");
259                 print_pci_resource (ctrl->p_mem_head);
260         }
261 }
262
263 /*
264  * phprm_find_available_resources
265  *
266  *  Finds available memory, IO, and IRQ resources for programming
267  *  devices which may be added to the system
268  *  this function is for hot plug ADD!
269  *
270  * returns 0 if success
271  */
272 int shpchprm_find_available_resources(struct controller *ctrl)
273 {
274         struct pci_func func;
275         u32 rc;
276
277         memset(&func, 0, sizeof(struct pci_func));
278
279         func.bus = ctrl->bus;
280         func.device = ctrl->device;
281         func.function = ctrl->function;
282         func.is_a_board = 1;
283
284         /* Get resources for this PCI bridge */
285         rc = shpchp_save_used_resources (ctrl, &func, !DISABLE_CARD);
286         dbg("%s: shpchp_save_used_resources rc = %d\n", __FUNCTION__, rc);
287
288         if (func.mem_head)
289                 func.mem_head->next = ctrl->mem_head;
290         ctrl->mem_head = func.mem_head;
291
292         if (func.p_mem_head)
293                 func.p_mem_head->next = ctrl->p_mem_head;
294         ctrl->p_mem_head = func.p_mem_head;
295
296         if (func.io_head)
297                 func.io_head->next = ctrl->io_head;
298         ctrl->io_head = func.io_head;
299
300         if(func.bus_head)
301                 func.bus_head->next = ctrl->bus_head;
302         ctrl->bus_head = func.bus_head;
303         if (ctrl->bus_head)
304                 phprm_delete_resource(&ctrl->bus_head, ctrl->pci_dev->subordinate->number, 1);
305
306         dbg("%s:pre-Bind PCI 0x%x Ctrl Resource Dump\n", __FUNCTION__, ctrl->bus);
307         phprm_dump_ctrl_res(ctrl);
308         bind_pci_resources_to_slots (ctrl);
309
310         dbg("%s:post-Bind PCI 0x%x Ctrl Resource Dump\n", __FUNCTION__, ctrl->bus);
311         phprm_dump_ctrl_res(ctrl);
312
313
314         /* If all of the following fail, we don't have any resources for hot plug add */
315         rc = 1;
316         rc &= shpchp_resource_sort_and_combine(&(ctrl->mem_head));
317         rc &= shpchp_resource_sort_and_combine(&(ctrl->p_mem_head));
318         rc &= shpchp_resource_sort_and_combine(&(ctrl->io_head));
319         rc &= shpchp_resource_sort_and_combine(&(ctrl->bus_head));
320
321         return (rc);
322 }
323
324 int shpchprm_set_hpp(
325         struct controller *ctrl,
326         struct pci_func *func,
327         u8      card_type)
328 {
329         u32 rc;
330         u8 temp_byte;
331         struct pci_bus lpci_bus, *pci_bus;
332         unsigned int    devfn;
333         memcpy(&lpci_bus, ctrl->pci_bus, sizeof(lpci_bus));
334         pci_bus = &lpci_bus;
335         pci_bus->number = func->bus;
336         devfn = PCI_DEVFN(func->device, func->function);
337
338         temp_byte = 0x40;       /* hard coded value for LT */
339         if (card_type == PCI_HEADER_TYPE_BRIDGE) {
340                 /* set subordinate Latency Timer */
341                 rc = pci_bus_write_config_byte(pci_bus, devfn, PCI_SEC_LATENCY_TIMER, temp_byte);
342
343                 if (rc) {
344                         dbg("%s: set secondary LT error. b:d:f(%02x:%02x:%02x)\n", __FUNCTION__, func->bus, 
345                                 func->device, func->function);
346                         return rc;
347                 }
348         }
349
350         /* set base Latency Timer */
351         rc = pci_bus_write_config_byte(pci_bus, devfn, PCI_LATENCY_TIMER, temp_byte);
352
353         if (rc) {
354                 dbg("%s: set LT error. b:d:f(%02x:%02x:%02x)\n", __FUNCTION__, func->bus, func->device, func->function);
355                 return rc;
356         }
357
358         /* set Cache Line size */
359         temp_byte = 0x08;       /* hard coded value for CLS */
360
361         rc = pci_bus_write_config_byte(pci_bus, devfn, PCI_CACHE_LINE_SIZE, temp_byte);
362
363         if (rc) {
364                 dbg("%s: set CLS error. b:d:f(%02x:%02x:%02x)\n", __FUNCTION__, func->bus, func->device, func->function);
365         }
366
367         /* set enable_perr */
368         /* set enable_serr */
369
370         return rc;
371 }
372
373 void shpchprm_enable_card(
374         struct controller *ctrl,
375         struct pci_func *func,
376         u8 card_type)
377 {
378         u16 command, bcommand;
379         struct pci_bus lpci_bus, *pci_bus;
380         unsigned int devfn;
381         int rc;
382
383         memcpy(&lpci_bus, ctrl->pci_bus, sizeof(lpci_bus));
384         pci_bus = &lpci_bus;
385         pci_bus->number = func->bus;
386         devfn = PCI_DEVFN(func->device, func->function);
387
388         rc = pci_bus_read_config_word(pci_bus, devfn, PCI_COMMAND, &command);
389
390         command |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR
391                 | PCI_COMMAND_MASTER | PCI_COMMAND_INVALIDATE
392                 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY;
393
394         rc = pci_bus_write_config_word(pci_bus, devfn, PCI_COMMAND, command);
395
396         if (card_type == PCI_HEADER_TYPE_BRIDGE) {
397
398                 rc = pci_bus_read_config_word(pci_bus, devfn, PCI_BRIDGE_CONTROL, &bcommand);
399
400                 bcommand |= PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR
401                         | PCI_BRIDGE_CTL_NO_ISA;
402
403                 rc = pci_bus_write_config_word(pci_bus, devfn, PCI_BRIDGE_CONTROL, bcommand);
404         }
405 }
406
407 static int legacy_shpchprm_init_pci(void)
408 {
409         return 0;
410 }
411
412 int shpchprm_init(enum php_ctlr_type ctrl_type)
413 {
414         int retval;
415
416         switch (ctrl_type) {
417         case PCI:
418                 retval = legacy_shpchprm_init_pci();
419                 break;
420         default:
421                 retval = -ENODEV;
422                 break;
423         }
424
425         return retval;
426 }