blob: 7a65d427ac11158a8493dfec0a23b89405d5c3c0 [file] [log] [blame]
Bjorn Helgaas736759e2018-01-26 14:22:04 -06001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Compaq Hot Plug Controller Driver
4 *
5 * Copyright (C) 1995,2001 Compaq Computer Corporation
6 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
7 * Copyright (C) 2001 IBM Corp.
8 *
9 * All rights reserved.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Send feedback to <greg@kroah.com>
12 *
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/kernel.h>
17#include <linux/types.h>
18#include <linux/proc_fs.h>
19#include <linux/slab.h>
20#include <linux/workqueue.h>
21#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070022#include <linux/pci_hotplug.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080023#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "cpqphp.h"
25#include "cpqphp_nvram.h"
26
27
28#define ROM_INT15_PHY_ADDR 0x0FF859
29#define READ_EV 0xD8A4
30#define WRITE_EV 0xD8A5
31
32struct register_foo {
33 union {
34 unsigned long lword; /* eax */
35 unsigned short word; /* ax */
36
37 struct {
38 unsigned char low; /* al */
39 unsigned char high; /* ah */
40 } byte;
41 } data;
42
43 unsigned char opcode; /* see below */
44 unsigned long length; /* if the reg. is a pointer, how much data */
45} __attribute__ ((packed));
46
47struct all_reg {
48 struct register_foo eax_reg;
49 struct register_foo ebx_reg;
50 struct register_foo ecx_reg;
51 struct register_foo edx_reg;
52 struct register_foo edi_reg;
53 struct register_foo esi_reg;
54 struct register_foo eflags_reg;
55} __attribute__ ((packed));
56
57
58struct ev_hrt_header {
59 u8 Version;
60 u8 num_of_ctrl;
61 u8 next;
62};
63
64struct ev_hrt_ctrl {
65 u8 bus;
66 u8 device;
67 u8 function;
68 u8 mem_avail;
69 u8 p_mem_avail;
70 u8 io_avail;
71 u8 bus_avail;
72 u8 next;
73};
74
75
76static u8 evbuffer_init;
77static u8 evbuffer_length;
78static u8 evbuffer[1024];
79
80static void __iomem *compaq_int15_entry_point;
81
Alex Chiang427438c2009-03-31 09:23:16 -060082/* lock for ordering int15_bios_call() */
Guobin Huang3a306a52021-04-06 20:06:37 +080083static DEFINE_SPINLOCK(int15_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85
86/* This is a series of function that deals with
Alex Chiang427438c2009-03-31 09:23:16 -060087 * setting & getting the hotplug resource table in some environment variable.
88 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90/*
91 * We really shouldn't be doing this unless there is a _very_ good reason to!!!
92 * greg k-h
93 */
94
95
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040096static u32 add_byte(u32 **p_buffer, u8 value, u32 *used, u32 *avail)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 u8 **tByte;
99
100 if ((*used + 1) > *avail)
101 return(1);
Alex Chiang861fefb2009-03-31 09:23:11 -0600102
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800103 *((u8 *)*p_buffer) = value;
104 tByte = (u8 **)p_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 (*tByte)++;
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800106 *used += 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return(0);
108}
109
110
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400111static u32 add_dword(u32 **p_buffer, u32 value, u32 *used, u32 *avail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 if ((*used + 4) > *avail)
114 return(1);
115
116 **p_buffer = value;
117 (*p_buffer)++;
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800118 *used += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return(0);
120}
121
122
123/*
124 * check_for_compaq_ROM
125 *
126 * this routine verifies that the ROM OEM string is 'COMPAQ'
127 *
128 * returns 0 for non-Compaq ROM, 1 for Compaq ROM
129 */
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800130static int check_for_compaq_ROM(void __iomem *rom_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 u8 temp1, temp2, temp3, temp4, temp5, temp6;
133 int result = 0;
134
135 temp1 = readb(rom_start + 0xffea + 0);
136 temp2 = readb(rom_start + 0xffea + 1);
137 temp3 = readb(rom_start + 0xffea + 2);
138 temp4 = readb(rom_start + 0xffea + 3);
139 temp5 = readb(rom_start + 0xffea + 4);
140 temp6 = readb(rom_start + 0xffea + 5);
141 if ((temp1 == 'C') &&
142 (temp2 == 'O') &&
143 (temp3 == 'M') &&
144 (temp4 == 'P') &&
145 (temp5 == 'A') &&
146 (temp6 == 'Q')) {
147 result = 1;
148 }
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800149 dbg("%s - returned %d\n", __func__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return result;
151}
152
153
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800154static u32 access_EV(u16 operation, u8 *ev_name, u8 *buffer, u32 *buf_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 unsigned long flags;
157 int op = operation;
158 int ret_val;
Alex Chiang861fefb2009-03-31 09:23:11 -0600159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (!compaq_int15_entry_point)
161 return -ENODEV;
Alex Chiang861fefb2009-03-31 09:23:11 -0600162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 spin_lock_irqsave(&int15_lock, flags);
164 __asm__ (
165 "xorl %%ebx,%%ebx\n" \
166 "xorl %%edx,%%edx\n" \
167 "pushf\n" \
168 "push %%cs\n" \
169 "cli\n" \
170 "call *%6\n"
171 : "=c" (*buf_size), "=a" (ret_val)
172 : "a" (op), "c" (*buf_size), "S" (ev_name),
173 "D" (buffer), "m" (compaq_int15_entry_point)
174 : "%ebx", "%edx");
175 spin_unlock_irqrestore(&int15_lock, flags);
Alex Chiang861fefb2009-03-31 09:23:11 -0600176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return((ret_val & 0xFF00) >> 8);
178}
179
180
181/*
182 * load_HRT
183 *
184 * Read the hot plug Resource Table from NVRAM
185 */
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800186static int load_HRT(void __iomem *rom_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 u32 available;
189 u32 temp_dword;
190 u8 temp_byte = 0xFF;
191 u32 rc;
192
Quentin Lambert656f9782014-09-07 20:02:47 +0200193 if (!check_for_compaq_ROM(rom_start))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 available = 1024;
197
Alex Chiang427438c2009-03-31 09:23:16 -0600198 /* Now load the EV */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 temp_dword = available;
200
201 rc = access_EV(READ_EV, "CQTHPS", evbuffer, &temp_dword);
202
203 evbuffer_length = temp_dword;
204
Alex Chiang427438c2009-03-31 09:23:16 -0600205 /* We're maintaining the resource lists so write FF to invalidate old
206 * info
207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 temp_dword = 1;
209
210 rc = access_EV(WRITE_EV, "CQTHPS", &temp_byte, &temp_dword);
211
212 return rc;
213}
214
215
216/*
217 * store_HRT
218 *
219 * Save the hot plug Resource Table in NVRAM
220 */
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800221static u32 store_HRT(void __iomem *rom_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 u32 *buffer;
224 u32 *pFill;
225 u32 usedbytes;
226 u32 available;
227 u32 temp_dword;
228 u32 rc;
229 u8 loop;
230 u8 numCtrl = 0;
231 struct controller *ctrl;
232 struct pci_resource *resNode;
233 struct ev_hrt_header *p_EV_header;
234 struct ev_hrt_ctrl *p_ev_ctrl;
235
236 available = 1024;
237
Quentin Lambert656f9782014-09-07 20:02:47 +0200238 if (!check_for_compaq_ROM(rom_start))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800241 buffer = (u32 *) evbuffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 if (!buffer)
244 return(1);
245
246 pFill = buffer;
247 usedbytes = 0;
248
249 p_EV_header = (struct ev_hrt_header *) pFill;
250
251 ctrl = cpqhp_ctrl_list;
Alex Chiang861fefb2009-03-31 09:23:11 -0600252
Alex Chiang427438c2009-03-31 09:23:16 -0600253 /* The revision of this structure */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400254 rc = add_byte(&pFill, 1 + ctrl->push_flag, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (rc)
256 return(rc);
257
Alex Chiang427438c2009-03-31 09:23:16 -0600258 /* The number of controllers */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400259 rc = add_byte(&pFill, 1, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (rc)
261 return(rc);
262
263 while (ctrl) {
264 p_ev_ctrl = (struct ev_hrt_ctrl *) pFill;
265
266 numCtrl++;
267
Alex Chiang427438c2009-03-31 09:23:16 -0600268 /* The bus number */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400269 rc = add_byte(&pFill, ctrl->bus, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (rc)
271 return(rc);
272
Alex Chiang427438c2009-03-31 09:23:16 -0600273 /* The device Number */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400274 rc = add_byte(&pFill, PCI_SLOT(ctrl->pci_dev->devfn), &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (rc)
276 return(rc);
277
Alex Chiang427438c2009-03-31 09:23:16 -0600278 /* The function Number */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400279 rc = add_byte(&pFill, PCI_FUNC(ctrl->pci_dev->devfn), &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (rc)
281 return(rc);
282
Alex Chiang427438c2009-03-31 09:23:16 -0600283 /* Skip the number of available entries */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400284 rc = add_dword(&pFill, 0, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (rc)
286 return(rc);
287
Alex Chiang427438c2009-03-31 09:23:16 -0600288 /* Figure out memory Available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 resNode = ctrl->mem_head;
291
292 loop = 0;
293
294 while (resNode) {
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800295 loop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Alex Chiang427438c2009-03-31 09:23:16 -0600297 /* base */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400298 rc = add_dword(&pFill, resNode->base, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (rc)
300 return(rc);
301
Alex Chiang427438c2009-03-31 09:23:16 -0600302 /* length */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400303 rc = add_dword(&pFill, resNode->length, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (rc)
305 return(rc);
306
307 resNode = resNode->next;
308 }
309
Alex Chiang427438c2009-03-31 09:23:16 -0600310 /* Fill in the number of entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 p_ev_ctrl->mem_avail = loop;
312
Alex Chiang427438c2009-03-31 09:23:16 -0600313 /* Figure out prefetchable memory Available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 resNode = ctrl->p_mem_head;
316
317 loop = 0;
318
319 while (resNode) {
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800320 loop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Alex Chiang427438c2009-03-31 09:23:16 -0600322 /* base */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400323 rc = add_dword(&pFill, resNode->base, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (rc)
325 return(rc);
326
Alex Chiang427438c2009-03-31 09:23:16 -0600327 /* length */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400328 rc = add_dword(&pFill, resNode->length, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (rc)
330 return(rc);
331
332 resNode = resNode->next;
333 }
334
Alex Chiang427438c2009-03-31 09:23:16 -0600335 /* Fill in the number of entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 p_ev_ctrl->p_mem_avail = loop;
337
Alex Chiang427438c2009-03-31 09:23:16 -0600338 /* Figure out IO Available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 resNode = ctrl->io_head;
341
342 loop = 0;
343
344 while (resNode) {
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800345 loop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Alex Chiang427438c2009-03-31 09:23:16 -0600347 /* base */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400348 rc = add_dword(&pFill, resNode->base, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (rc)
350 return(rc);
351
Alex Chiang427438c2009-03-31 09:23:16 -0600352 /* length */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400353 rc = add_dword(&pFill, resNode->length, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (rc)
355 return(rc);
356
357 resNode = resNode->next;
358 }
359
Alex Chiang427438c2009-03-31 09:23:16 -0600360 /* Fill in the number of entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 p_ev_ctrl->io_avail = loop;
362
Alex Chiang427438c2009-03-31 09:23:16 -0600363 /* Figure out bus Available */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 resNode = ctrl->bus_head;
366
367 loop = 0;
368
369 while (resNode) {
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800370 loop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alex Chiang427438c2009-03-31 09:23:16 -0600372 /* base */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400373 rc = add_dword(&pFill, resNode->base, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (rc)
375 return(rc);
376
Alex Chiang427438c2009-03-31 09:23:16 -0600377 /* length */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400378 rc = add_dword(&pFill, resNode->length, &usedbytes, &available);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (rc)
380 return(rc);
381
382 resNode = resNode->next;
383 }
384
Alex Chiang427438c2009-03-31 09:23:16 -0600385 /* Fill in the number of entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 p_ev_ctrl->bus_avail = loop;
387
388 ctrl = ctrl->next;
389 }
Alex Chiang861fefb2009-03-31 09:23:11 -0600390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 p_EV_header->num_of_ctrl = numCtrl;
392
Alex Chiang427438c2009-03-31 09:23:16 -0600393 /* Now store the EV */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 temp_dword = usedbytes;
396
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800397 rc = access_EV(WRITE_EV, "CQTHPS", (u8 *) buffer, &temp_dword);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 dbg("usedbytes = 0x%x, length = 0x%x\n", usedbytes, temp_dword);
400
401 evbuffer_length = temp_dword;
402
403 if (rc) {
404 err(msg_unable_to_save);
405 return(1);
406 }
407
408 return(0);
409}
410
411
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800412void compaq_nvram_init(void __iomem *rom_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Quentin Lambert656f9782014-09-07 20:02:47 +0200414 if (rom_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 compaq_int15_entry_point = (rom_start + ROM_INT15_PHY_ADDR - ROM_PHY_ADDR);
Quentin Lambert656f9782014-09-07 20:02:47 +0200416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 dbg("int15 entry = %p\n", compaq_int15_entry_point);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800421int compaq_nvram_load(void __iomem *rom_start, struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 u8 bus, device, function;
424 u8 nummem, numpmem, numio, numbus;
425 u32 rc;
426 u8 *p_byte;
427 struct pci_resource *mem_node;
428 struct pci_resource *p_mem_node;
429 struct pci_resource *io_node;
430 struct pci_resource *bus_node;
431 struct ev_hrt_ctrl *p_ev_ctrl;
432 struct ev_hrt_header *p_EV_header;
433
434 if (!evbuffer_init) {
Alex Chiang427438c2009-03-31 09:23:16 -0600435 /* Read the resource list information in from NVRAM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (load_HRT(rom_start))
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800437 memset(evbuffer, 0, 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 evbuffer_init = 1;
440 }
441
Alex Chiang427438c2009-03-31 09:23:16 -0600442 /* If we saved information in NVRAM, use it now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 p_EV_header = (struct ev_hrt_header *) evbuffer;
444
Alex Chiang427438c2009-03-31 09:23:16 -0600445 /* The following code is for systems where version 1.0 of this
446 * driver has been loaded, but doesn't support the hardware.
447 * In that case, the driver would incorrectly store something
448 * in NVRAM.
449 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if ((p_EV_header->Version == 2) ||
451 ((p_EV_header->Version == 1) && !ctrl->push_flag)) {
452 p_byte = &(p_EV_header->next);
453
454 p_ev_ctrl = (struct ev_hrt_ctrl *) &(p_EV_header->next);
455
456 p_byte += 3;
457
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800458 if (p_byte > ((u8 *)p_EV_header + evbuffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return 2;
460
461 bus = p_ev_ctrl->bus;
462 device = p_ev_ctrl->device;
463 function = p_ev_ctrl->function;
464
465 while ((bus != ctrl->bus) ||
Alex Chiang861fefb2009-03-31 09:23:11 -0600466 (device != PCI_SLOT(ctrl->pci_dev->devfn)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 (function != PCI_FUNC(ctrl->pci_dev->devfn))) {
468 nummem = p_ev_ctrl->mem_avail;
469 numpmem = p_ev_ctrl->p_mem_avail;
470 numio = p_ev_ctrl->io_avail;
471 numbus = p_ev_ctrl->bus_avail;
472
473 p_byte += 4;
474
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800475 if (p_byte > ((u8 *)p_EV_header + evbuffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return 2;
477
Alex Chiang427438c2009-03-31 09:23:16 -0600478 /* Skip forward to the next entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 p_byte += (nummem + numpmem + numio + numbus) * 8;
480
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800481 if (p_byte > ((u8 *)p_EV_header + evbuffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return 2;
483
484 p_ev_ctrl = (struct ev_hrt_ctrl *) p_byte;
485
486 p_byte += 3;
487
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800488 if (p_byte > ((u8 *)p_EV_header + evbuffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return 2;
490
491 bus = p_ev_ctrl->bus;
492 device = p_ev_ctrl->device;
493 function = p_ev_ctrl->function;
494 }
495
496 nummem = p_ev_ctrl->mem_avail;
497 numpmem = p_ev_ctrl->p_mem_avail;
498 numio = p_ev_ctrl->io_avail;
499 numbus = p_ev_ctrl->bus_avail;
500
501 p_byte += 4;
502
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800503 if (p_byte > ((u8 *)p_EV_header + evbuffer_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return 2;
505
506 while (nummem--) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800507 mem_node = kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 if (!mem_node)
510 break;
511
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800512 mem_node->base = *(u32 *)p_byte;
513 dbg("mem base = %8.8x\n", mem_node->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 p_byte += 4;
515
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800516 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 kfree(mem_node);
518 return 2;
519 }
520
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800521 mem_node->length = *(u32 *)p_byte;
522 dbg("mem length = %8.8x\n", mem_node->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 p_byte += 4;
524
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800525 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 kfree(mem_node);
527 return 2;
528 }
529
530 mem_node->next = ctrl->mem_head;
531 ctrl->mem_head = mem_node;
532 }
533
534 while (numpmem--) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800535 p_mem_node = kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if (!p_mem_node)
538 break;
539
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800540 p_mem_node->base = *(u32 *)p_byte;
541 dbg("pre-mem base = %8.8x\n", p_mem_node->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 p_byte += 4;
543
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800544 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 kfree(p_mem_node);
546 return 2;
547 }
548
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800549 p_mem_node->length = *(u32 *)p_byte;
550 dbg("pre-mem length = %8.8x\n", p_mem_node->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 p_byte += 4;
552
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800553 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 kfree(p_mem_node);
555 return 2;
556 }
557
558 p_mem_node->next = ctrl->p_mem_head;
559 ctrl->p_mem_head = p_mem_node;
560 }
561
562 while (numio--) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800563 io_node = kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (!io_node)
566 break;
567
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800568 io_node->base = *(u32 *)p_byte;
569 dbg("io base = %8.8x\n", io_node->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 p_byte += 4;
571
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800572 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 kfree(io_node);
574 return 2;
575 }
576
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800577 io_node->length = *(u32 *)p_byte;
578 dbg("io length = %8.8x\n", io_node->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 p_byte += 4;
580
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800581 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 kfree(io_node);
583 return 2;
584 }
585
586 io_node->next = ctrl->io_head;
587 ctrl->io_head = io_node;
588 }
589
590 while (numbus--) {
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800591 bus_node = kmalloc(sizeof(struct pci_resource), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (!bus_node)
594 break;
595
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800596 bus_node->base = *(u32 *)p_byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 p_byte += 4;
598
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800599 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 kfree(bus_node);
601 return 2;
602 }
603
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800604 bus_node->length = *(u32 *)p_byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 p_byte += 4;
606
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800607 if (p_byte > ((u8 *)p_EV_header + evbuffer_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 kfree(bus_node);
609 return 2;
610 }
611
612 bus_node->next = ctrl->bus_head;
613 ctrl->bus_head = bus_node;
614 }
615
Alex Chiang427438c2009-03-31 09:23:16 -0600616 /* If all of the following fail, we don't have any resources for
617 * hot plug add
618 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 rc = 1;
620 rc &= cpqhp_resource_sort_and_combine(&(ctrl->mem_head));
621 rc &= cpqhp_resource_sort_and_combine(&(ctrl->p_mem_head));
622 rc &= cpqhp_resource_sort_and_combine(&(ctrl->io_head));
623 rc &= cpqhp_resource_sort_and_combine(&(ctrl->bus_head));
624
625 if (rc)
626 return(rc);
627 } else {
Alex Chiang861fefb2009-03-31 09:23:11 -0600628 if ((evbuffer[0] != 0) && (!ctrl->push_flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return 1;
630 }
631
632 return 0;
633}
634
Alex Chiang861fefb2009-03-31 09:23:11 -0600635
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800636int compaq_nvram_store(void __iomem *rom_start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 int rc = 1;
639
640 if (rom_start == NULL)
641 return -ENODEV;
642
643 if (evbuffer_init) {
644 rc = store_HRT(rom_start);
Quentin Lambert656f9782014-09-07 20:02:47 +0200645 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 err(msg_unable_to_save);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648 return rc;
649}
650