V4L/DVB (7619): em28xx: adds proper demod IF for HVR-900
[linux-2.6.git] / arch / parisc / kernel / firmware.c
blob7177a6cd1b7f58b0fcc83f60ea5c11cf1bd96e1a
1 /*
2 * arch/parisc/kernel/firmware.c - safe PDC access routines
4 * PDC == Processor Dependent Code
6 * See http://www.parisc-linux.org/documentation/index.html
7 * for documentation describing the entry points and calling
8 * conventions defined below.
10 * Copyright 1999 SuSE GmbH Nuernberg (Philipp Rumpf, prumpf@tux.org)
11 * Copyright 1999 The Puffin Group, (Alex deVries, David Kennedy)
12 * Copyright 2003 Grant Grundler <grundler parisc-linux org>
13 * Copyright 2003,2004 Ryan Bradetich <rbrad@parisc-linux.org>
14 * Copyright 2004,2006 Thibaut VARENE <varenet@parisc-linux.org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
23 /* I think it would be in everyone's best interest to follow this
24 * guidelines when writing PDC wrappers:
26 * - the name of the pdc wrapper should match one of the macros
27 * used for the first two arguments
28 * - don't use caps for random parts of the name
29 * - use the static PDC result buffers and "copyout" to structs
30 * supplied by the caller to encapsulate alignment restrictions
31 * - hold pdc_lock while in PDC or using static result buffers
32 * - use __pa() to convert virtual (kernel) pointers to physical
33 * ones.
34 * - the name of the struct used for pdc return values should equal
35 * one of the macros used for the first two arguments to the
36 * corresponding PDC call
37 * - keep the order of arguments
38 * - don't be smart (setting trailing NUL bytes for strings, return
39 * something useful even if the call failed) unless you are sure
40 * it's not going to affect functionality or performance
42 * Example:
43 * int pdc_cache_info(struct pdc_cache_info *cache_info )
44 * {
45 * int retval;
47 * spin_lock_irq(&pdc_lock);
48 * retval = mem_pdc_call(PDC_CACHE,PDC_CACHE_INFO,__pa(cache_info),0);
49 * convert_to_wide(pdc_result);
50 * memcpy(cache_info, pdc_result, sizeof(*cache_info));
51 * spin_unlock_irq(&pdc_lock);
53 * return retval;
54 * }
55 * prumpf 991016
58 #include <stdarg.h>
60 #include <linux/delay.h>
61 #include <linux/init.h>
62 #include <linux/kernel.h>
63 #include <linux/module.h>
64 #include <linux/string.h>
65 #include <linux/spinlock.h>
67 #include <asm/page.h>
68 #include <asm/pdc.h>
69 #include <asm/pdcpat.h>
70 #include <asm/system.h>
71 #include <asm/processor.h> /* for boot_cpu_data */
73 static DEFINE_SPINLOCK(pdc_lock);
74 static unsigned long pdc_result[32] __attribute__ ((aligned (8)));
75 static unsigned long pdc_result2[32] __attribute__ ((aligned (8)));
77 #ifdef CONFIG_64BIT
78 #define WIDE_FIRMWARE 0x1
79 #define NARROW_FIRMWARE 0x2
81 /* Firmware needs to be initially set to narrow to determine the
82 * actual firmware width. */
83 int parisc_narrow_firmware __read_mostly = 1;
84 #endif
86 /* On most currently-supported platforms, IODC I/O calls are 32-bit calls
87 * and MEM_PDC calls are always the same width as the OS.
88 * Some PAT boxes may have 64-bit IODC I/O.
90 * Ryan Bradetich added the now obsolete CONFIG_PDC_NARROW to allow
91 * 64-bit kernels to run on systems with 32-bit MEM_PDC calls.
92 * This allowed wide kernels to run on Cxxx boxes.
93 * We now detect 32-bit-only PDC and dynamically switch to 32-bit mode
94 * when running a 64-bit kernel on such boxes (e.g. C200 or C360).
97 #ifdef CONFIG_64BIT
98 long real64_call(unsigned long function, ...);
99 #endif
100 long real32_call(unsigned long function, ...);
102 #ifdef CONFIG_64BIT
103 # define MEM_PDC (unsigned long)(PAGE0->mem_pdc_hi) << 32 | PAGE0->mem_pdc
104 # define mem_pdc_call(args...) unlikely(parisc_narrow_firmware) ? real32_call(MEM_PDC, args) : real64_call(MEM_PDC, args)
105 #else
106 # define MEM_PDC (unsigned long)PAGE0->mem_pdc
107 # define mem_pdc_call(args...) real32_call(MEM_PDC, args)
108 #endif
112 * f_extend - Convert PDC addresses to kernel addresses.
113 * @address: Address returned from PDC.
115 * This function is used to convert PDC addresses into kernel addresses
116 * when the PDC address size and kernel address size are different.
118 static unsigned long f_extend(unsigned long address)
120 #ifdef CONFIG_64BIT
121 if(unlikely(parisc_narrow_firmware)) {
122 if((address & 0xff000000) == 0xf0000000)
123 return 0xf0f0f0f000000000UL | (u32)address;
125 if((address & 0xf0000000) == 0xf0000000)
126 return 0xffffffff00000000UL | (u32)address;
128 #endif
129 return address;
133 * convert_to_wide - Convert the return buffer addresses into kernel addresses.
134 * @address: The return buffer from PDC.
136 * This function is used to convert the return buffer addresses retrieved from PDC
137 * into kernel addresses when the PDC address size and kernel address size are
138 * different.
140 static void convert_to_wide(unsigned long *addr)
142 #ifdef CONFIG_64BIT
143 int i;
144 unsigned int *p = (unsigned int *)addr;
146 if(unlikely(parisc_narrow_firmware)) {
147 for(i = 31; i >= 0; --i)
148 addr[i] = p[i];
150 #endif
154 * set_firmware_width - Determine if the firmware is wide or narrow.
156 * This function must be called before any pdc_* function that uses the convert_to_wide
157 * function.
159 void __init set_firmware_width(void)
161 #ifdef CONFIG_64BIT
162 int retval;
163 unsigned long flags;
165 spin_lock_irqsave(&pdc_lock, flags);
166 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_CAPABILITIES, __pa(pdc_result), 0);
167 convert_to_wide(pdc_result);
168 if(pdc_result[0] != NARROW_FIRMWARE)
169 parisc_narrow_firmware = 0;
170 spin_unlock_irqrestore(&pdc_lock, flags);
171 #endif
175 * pdc_emergency_unlock - Unlock the linux pdc lock
177 * This call unlocks the linux pdc lock in case we need some PDC functions
178 * (like pdc_add_valid) during kernel stack dump.
180 void pdc_emergency_unlock(void)
182 /* Spinlock DEBUG code freaks out if we unconditionally unlock */
183 if (spin_is_locked(&pdc_lock))
184 spin_unlock(&pdc_lock);
189 * pdc_add_valid - Verify address can be accessed without causing a HPMC.
190 * @address: Address to be verified.
192 * This PDC call attempts to read from the specified address and verifies
193 * if the address is valid.
195 * The return value is PDC_OK (0) in case accessing this address is valid.
197 int pdc_add_valid(unsigned long address)
199 int retval;
200 unsigned long flags;
202 spin_lock_irqsave(&pdc_lock, flags);
203 retval = mem_pdc_call(PDC_ADD_VALID, PDC_ADD_VALID_VERIFY, address);
204 spin_unlock_irqrestore(&pdc_lock, flags);
206 return retval;
208 EXPORT_SYMBOL(pdc_add_valid);
211 * pdc_chassis_info - Return chassis information.
212 * @result: The return buffer.
213 * @chassis_info: The memory buffer address.
214 * @len: The size of the memory buffer address.
216 * An HVERSION dependent call for returning the chassis information.
218 int __init pdc_chassis_info(struct pdc_chassis_info *chassis_info, void *led_info, unsigned long len)
220 int retval;
221 unsigned long flags;
223 spin_lock_irqsave(&pdc_lock, flags);
224 memcpy(&pdc_result, chassis_info, sizeof(*chassis_info));
225 memcpy(&pdc_result2, led_info, len);
226 retval = mem_pdc_call(PDC_CHASSIS, PDC_RETURN_CHASSIS_INFO,
227 __pa(pdc_result), __pa(pdc_result2), len);
228 memcpy(chassis_info, pdc_result, sizeof(*chassis_info));
229 memcpy(led_info, pdc_result2, len);
230 spin_unlock_irqrestore(&pdc_lock, flags);
232 return retval;
236 * pdc_pat_chassis_send_log - Sends a PDC PAT CHASSIS log message.
237 * @retval: -1 on error, 0 on success. Other value are PDC errors
239 * Must be correctly formatted or expect system crash
241 #ifdef CONFIG_64BIT
242 int pdc_pat_chassis_send_log(unsigned long state, unsigned long data)
244 int retval = 0;
245 unsigned long flags;
247 if (!is_pdc_pat())
248 return -1;
250 spin_lock_irqsave(&pdc_lock, flags);
251 retval = mem_pdc_call(PDC_PAT_CHASSIS_LOG, PDC_PAT_CHASSIS_WRITE_LOG, __pa(&state), __pa(&data));
252 spin_unlock_irqrestore(&pdc_lock, flags);
254 return retval;
256 #endif
259 * pdc_chassis_disp - Updates chassis code
260 * @retval: -1 on error, 0 on success
262 int pdc_chassis_disp(unsigned long disp)
264 int retval = 0;
265 unsigned long flags;
267 spin_lock_irqsave(&pdc_lock, flags);
268 retval = mem_pdc_call(PDC_CHASSIS, PDC_CHASSIS_DISP, disp);
269 spin_unlock_irqrestore(&pdc_lock, flags);
271 return retval;
275 * pdc_chassis_warn - Fetches chassis warnings
276 * @retval: -1 on error, 0 on success
278 int pdc_chassis_warn(unsigned long *warn)
280 int retval = 0;
281 unsigned long flags;
283 spin_lock_irqsave(&pdc_lock, flags);
284 retval = mem_pdc_call(PDC_CHASSIS, PDC_CHASSIS_WARN, __pa(pdc_result));
285 *warn = pdc_result[0];
286 spin_unlock_irqrestore(&pdc_lock, flags);
288 return retval;
292 * pdc_coproc_cfg - To identify coprocessors attached to the processor.
293 * @pdc_coproc_info: Return buffer address.
295 * This PDC call returns the presence and status of all the coprocessors
296 * attached to the processor.
298 int __init pdc_coproc_cfg(struct pdc_coproc_cfg *pdc_coproc_info)
300 int retval;
301 unsigned long flags;
303 spin_lock_irqsave(&pdc_lock, flags);
304 retval = mem_pdc_call(PDC_COPROC, PDC_COPROC_CFG, __pa(pdc_result));
305 convert_to_wide(pdc_result);
306 pdc_coproc_info->ccr_functional = pdc_result[0];
307 pdc_coproc_info->ccr_present = pdc_result[1];
308 pdc_coproc_info->revision = pdc_result[17];
309 pdc_coproc_info->model = pdc_result[18];
310 spin_unlock_irqrestore(&pdc_lock, flags);
312 return retval;
316 * pdc_iodc_read - Read data from the modules IODC.
317 * @actcnt: The actual number of bytes.
318 * @hpa: The HPA of the module for the iodc read.
319 * @index: The iodc entry point.
320 * @iodc_data: A buffer memory for the iodc options.
321 * @iodc_data_size: Size of the memory buffer.
323 * This PDC call reads from the IODC of the module specified by the hpa
324 * argument.
326 int pdc_iodc_read(unsigned long *actcnt, unsigned long hpa, unsigned int index,
327 void *iodc_data, unsigned int iodc_data_size)
329 int retval;
330 unsigned long flags;
332 spin_lock_irqsave(&pdc_lock, flags);
333 retval = mem_pdc_call(PDC_IODC, PDC_IODC_READ, __pa(pdc_result), hpa,
334 index, __pa(pdc_result2), iodc_data_size);
335 convert_to_wide(pdc_result);
336 *actcnt = pdc_result[0];
337 memcpy(iodc_data, pdc_result2, iodc_data_size);
338 spin_unlock_irqrestore(&pdc_lock, flags);
340 return retval;
342 EXPORT_SYMBOL(pdc_iodc_read);
345 * pdc_system_map_find_mods - Locate unarchitected modules.
346 * @pdc_mod_info: Return buffer address.
347 * @mod_path: pointer to dev path structure.
348 * @mod_index: fixed address module index.
350 * To locate and identify modules which reside at fixed I/O addresses, which
351 * do not self-identify via architected bus walks.
353 int pdc_system_map_find_mods(struct pdc_system_map_mod_info *pdc_mod_info,
354 struct pdc_module_path *mod_path, long mod_index)
356 int retval;
357 unsigned long flags;
359 spin_lock_irqsave(&pdc_lock, flags);
360 retval = mem_pdc_call(PDC_SYSTEM_MAP, PDC_FIND_MODULE, __pa(pdc_result),
361 __pa(pdc_result2), mod_index);
362 convert_to_wide(pdc_result);
363 memcpy(pdc_mod_info, pdc_result, sizeof(*pdc_mod_info));
364 memcpy(mod_path, pdc_result2, sizeof(*mod_path));
365 spin_unlock_irqrestore(&pdc_lock, flags);
367 pdc_mod_info->mod_addr = f_extend(pdc_mod_info->mod_addr);
368 return retval;
372 * pdc_system_map_find_addrs - Retrieve additional address ranges.
373 * @pdc_addr_info: Return buffer address.
374 * @mod_index: Fixed address module index.
375 * @addr_index: Address range index.
377 * Retrieve additional information about subsequent address ranges for modules
378 * with multiple address ranges.
380 int pdc_system_map_find_addrs(struct pdc_system_map_addr_info *pdc_addr_info,
381 long mod_index, long addr_index)
383 int retval;
384 unsigned long flags;
386 spin_lock_irqsave(&pdc_lock, flags);
387 retval = mem_pdc_call(PDC_SYSTEM_MAP, PDC_FIND_ADDRESS, __pa(pdc_result),
388 mod_index, addr_index);
389 convert_to_wide(pdc_result);
390 memcpy(pdc_addr_info, pdc_result, sizeof(*pdc_addr_info));
391 spin_unlock_irqrestore(&pdc_lock, flags);
393 pdc_addr_info->mod_addr = f_extend(pdc_addr_info->mod_addr);
394 return retval;
398 * pdc_model_info - Return model information about the processor.
399 * @model: The return buffer.
401 * Returns the version numbers, identifiers, and capabilities from the processor module.
403 int pdc_model_info(struct pdc_model *model)
405 int retval;
406 unsigned long flags;
408 spin_lock_irqsave(&pdc_lock, flags);
409 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_INFO, __pa(pdc_result), 0);
410 convert_to_wide(pdc_result);
411 memcpy(model, pdc_result, sizeof(*model));
412 spin_unlock_irqrestore(&pdc_lock, flags);
414 return retval;
418 * pdc_model_sysmodel - Get the system model name.
419 * @name: A char array of at least 81 characters.
421 * Get system model name from PDC ROM (e.g. 9000/715 or 9000/778/B160L).
422 * Using OS_ID_HPUX will return the equivalent of the 'modelname' command
423 * on HP/UX.
425 int pdc_model_sysmodel(char *name)
427 int retval;
428 unsigned long flags;
430 spin_lock_irqsave(&pdc_lock, flags);
431 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_SYSMODEL, __pa(pdc_result),
432 OS_ID_HPUX, __pa(name));
433 convert_to_wide(pdc_result);
435 if (retval == PDC_OK) {
436 name[pdc_result[0]] = '\0'; /* add trailing '\0' */
437 } else {
438 name[0] = 0;
440 spin_unlock_irqrestore(&pdc_lock, flags);
442 return retval;
446 * pdc_model_versions - Identify the version number of each processor.
447 * @cpu_id: The return buffer.
448 * @id: The id of the processor to check.
450 * Returns the version number for each processor component.
452 * This comment was here before, but I do not know what it means :( -RB
453 * id: 0 = cpu revision, 1 = boot-rom-version
455 int pdc_model_versions(unsigned long *versions, int id)
457 int retval;
458 unsigned long flags;
460 spin_lock_irqsave(&pdc_lock, flags);
461 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_VERSIONS, __pa(pdc_result), id);
462 convert_to_wide(pdc_result);
463 *versions = pdc_result[0];
464 spin_unlock_irqrestore(&pdc_lock, flags);
466 return retval;
470 * pdc_model_cpuid - Returns the CPU_ID.
471 * @cpu_id: The return buffer.
473 * Returns the CPU_ID value which uniquely identifies the cpu portion of
474 * the processor module.
476 int pdc_model_cpuid(unsigned long *cpu_id)
478 int retval;
479 unsigned long flags;
481 spin_lock_irqsave(&pdc_lock, flags);
482 pdc_result[0] = 0; /* preset zero (call may not be implemented!) */
483 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_CPU_ID, __pa(pdc_result), 0);
484 convert_to_wide(pdc_result);
485 *cpu_id = pdc_result[0];
486 spin_unlock_irqrestore(&pdc_lock, flags);
488 return retval;
492 * pdc_model_capabilities - Returns the platform capabilities.
493 * @capabilities: The return buffer.
495 * Returns information about platform support for 32- and/or 64-bit
496 * OSes, IO-PDIR coherency, and virtual aliasing.
498 int pdc_model_capabilities(unsigned long *capabilities)
500 int retval;
501 unsigned long flags;
503 spin_lock_irqsave(&pdc_lock, flags);
504 pdc_result[0] = 0; /* preset zero (call may not be implemented!) */
505 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_CAPABILITIES, __pa(pdc_result), 0);
506 convert_to_wide(pdc_result);
507 *capabilities = pdc_result[0];
508 spin_unlock_irqrestore(&pdc_lock, flags);
510 return retval;
514 * pdc_cache_info - Return cache and TLB information.
515 * @cache_info: The return buffer.
517 * Returns information about the processor's cache and TLB.
519 int pdc_cache_info(struct pdc_cache_info *cache_info)
521 int retval;
522 unsigned long flags;
524 spin_lock_irqsave(&pdc_lock, flags);
525 retval = mem_pdc_call(PDC_CACHE, PDC_CACHE_INFO, __pa(pdc_result), 0);
526 convert_to_wide(pdc_result);
527 memcpy(cache_info, pdc_result, sizeof(*cache_info));
528 spin_unlock_irqrestore(&pdc_lock, flags);
530 return retval;
534 * pdc_spaceid_bits - Return whether Space ID hashing is turned on.
535 * @space_bits: Should be 0, if not, bad mojo!
537 * Returns information about Space ID hashing.
539 int pdc_spaceid_bits(unsigned long *space_bits)
541 int retval;
542 unsigned long flags;
544 spin_lock_irqsave(&pdc_lock, flags);
545 pdc_result[0] = 0;
546 retval = mem_pdc_call(PDC_CACHE, PDC_CACHE_RET_SPID, __pa(pdc_result), 0);
547 convert_to_wide(pdc_result);
548 *space_bits = pdc_result[0];
549 spin_unlock_irqrestore(&pdc_lock, flags);
551 return retval;
554 #ifndef CONFIG_PA20
556 * pdc_btlb_info - Return block TLB information.
557 * @btlb: The return buffer.
559 * Returns information about the hardware Block TLB.
561 int pdc_btlb_info(struct pdc_btlb_info *btlb)
563 int retval;
564 unsigned long flags;
566 spin_lock_irqsave(&pdc_lock, flags);
567 retval = mem_pdc_call(PDC_BLOCK_TLB, PDC_BTLB_INFO, __pa(pdc_result), 0);
568 memcpy(btlb, pdc_result, sizeof(*btlb));
569 spin_unlock_irqrestore(&pdc_lock, flags);
571 if(retval < 0) {
572 btlb->max_size = 0;
574 return retval;
578 * pdc_mem_map_hpa - Find fixed module information.
579 * @address: The return buffer
580 * @mod_path: pointer to dev path structure.
582 * This call was developed for S700 workstations to allow the kernel to find
583 * the I/O devices (Core I/O). In the future (Kittyhawk and beyond) this
584 * call will be replaced (on workstations) by the architected PDC_SYSTEM_MAP
585 * call.
587 * This call is supported by all existing S700 workstations (up to Gecko).
589 int pdc_mem_map_hpa(struct pdc_memory_map *address,
590 struct pdc_module_path *mod_path)
592 int retval;
593 unsigned long flags;
595 spin_lock_irqsave(&pdc_lock, flags);
596 memcpy(pdc_result2, mod_path, sizeof(*mod_path));
597 retval = mem_pdc_call(PDC_MEM_MAP, PDC_MEM_MAP_HPA, __pa(pdc_result),
598 __pa(pdc_result2));
599 memcpy(address, pdc_result, sizeof(*address));
600 spin_unlock_irqrestore(&pdc_lock, flags);
602 return retval;
604 #endif /* !CONFIG_PA20 */
607 * pdc_lan_station_id - Get the LAN address.
608 * @lan_addr: The return buffer.
609 * @hpa: The network device HPA.
611 * Get the LAN station address when it is not directly available from the LAN hardware.
613 int pdc_lan_station_id(char *lan_addr, unsigned long hpa)
615 int retval;
616 unsigned long flags;
618 spin_lock_irqsave(&pdc_lock, flags);
619 retval = mem_pdc_call(PDC_LAN_STATION_ID, PDC_LAN_STATION_ID_READ,
620 __pa(pdc_result), hpa);
621 if (retval < 0) {
622 /* FIXME: else read MAC from NVRAM */
623 memset(lan_addr, 0, PDC_LAN_STATION_ID_SIZE);
624 } else {
625 memcpy(lan_addr, pdc_result, PDC_LAN_STATION_ID_SIZE);
627 spin_unlock_irqrestore(&pdc_lock, flags);
629 return retval;
631 EXPORT_SYMBOL(pdc_lan_station_id);
634 * pdc_stable_read - Read data from Stable Storage.
635 * @staddr: Stable Storage address to access.
636 * @memaddr: The memory address where Stable Storage data shall be copied.
637 * @count: number of bytes to transfer. count is multiple of 4.
639 * This PDC call reads from the Stable Storage address supplied in staddr
640 * and copies count bytes to the memory address memaddr.
641 * The call will fail if staddr+count > PDC_STABLE size.
643 int pdc_stable_read(unsigned long staddr, void *memaddr, unsigned long count)
645 int retval;
646 unsigned long flags;
648 spin_lock_irqsave(&pdc_lock, flags);
649 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_READ, staddr,
650 __pa(pdc_result), count);
651 convert_to_wide(pdc_result);
652 memcpy(memaddr, pdc_result, count);
653 spin_unlock_irqrestore(&pdc_lock, flags);
655 return retval;
657 EXPORT_SYMBOL(pdc_stable_read);
660 * pdc_stable_write - Write data to Stable Storage.
661 * @staddr: Stable Storage address to access.
662 * @memaddr: The memory address where Stable Storage data shall be read from.
663 * @count: number of bytes to transfer. count is multiple of 4.
665 * This PDC call reads count bytes from the supplied memaddr address,
666 * and copies count bytes to the Stable Storage address staddr.
667 * The call will fail if staddr+count > PDC_STABLE size.
669 int pdc_stable_write(unsigned long staddr, void *memaddr, unsigned long count)
671 int retval;
672 unsigned long flags;
674 spin_lock_irqsave(&pdc_lock, flags);
675 memcpy(pdc_result, memaddr, count);
676 convert_to_wide(pdc_result);
677 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_WRITE, staddr,
678 __pa(pdc_result), count);
679 spin_unlock_irqrestore(&pdc_lock, flags);
681 return retval;
683 EXPORT_SYMBOL(pdc_stable_write);
686 * pdc_stable_get_size - Get Stable Storage size in bytes.
687 * @size: pointer where the size will be stored.
689 * This PDC call returns the number of bytes in the processor's Stable
690 * Storage, which is the number of contiguous bytes implemented in Stable
691 * Storage starting from staddr=0. size in an unsigned 64-bit integer
692 * which is a multiple of four.
694 int pdc_stable_get_size(unsigned long *size)
696 int retval;
697 unsigned long flags;
699 spin_lock_irqsave(&pdc_lock, flags);
700 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_RETURN_SIZE, __pa(pdc_result));
701 *size = pdc_result[0];
702 spin_unlock_irqrestore(&pdc_lock, flags);
704 return retval;
706 EXPORT_SYMBOL(pdc_stable_get_size);
709 * pdc_stable_verify_contents - Checks that Stable Storage contents are valid.
711 * This PDC call is meant to be used to check the integrity of the current
712 * contents of Stable Storage.
714 int pdc_stable_verify_contents(void)
716 int retval;
717 unsigned long flags;
719 spin_lock_irqsave(&pdc_lock, flags);
720 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_VERIFY_CONTENTS);
721 spin_unlock_irqrestore(&pdc_lock, flags);
723 return retval;
725 EXPORT_SYMBOL(pdc_stable_verify_contents);
728 * pdc_stable_initialize - Sets Stable Storage contents to zero and initialize
729 * the validity indicator.
731 * This PDC call will erase all contents of Stable Storage. Use with care!
733 int pdc_stable_initialize(void)
735 int retval;
736 unsigned long flags;
738 spin_lock_irqsave(&pdc_lock, flags);
739 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_INITIALIZE);
740 spin_unlock_irqrestore(&pdc_lock, flags);
742 return retval;
744 EXPORT_SYMBOL(pdc_stable_initialize);
747 * pdc_get_initiator - Get the SCSI Interface Card params (SCSI ID, SDTR, SE or LVD)
748 * @hwpath: fully bc.mod style path to the device.
749 * @initiator: the array to return the result into
751 * Get the SCSI operational parameters from PDC.
752 * Needed since HPUX never used BIOS or symbios card NVRAM.
753 * Most ncr/sym cards won't have an entry and just use whatever
754 * capabilities of the card are (eg Ultra, LVD). But there are
755 * several cases where it's useful:
756 * o set SCSI id for Multi-initiator clusters,
757 * o cable too long (ie SE scsi 10Mhz won't support 6m length),
758 * o bus width exported is less than what the interface chip supports.
760 int pdc_get_initiator(struct hardware_path *hwpath, struct pdc_initiator *initiator)
762 int retval;
763 unsigned long flags;
765 spin_lock_irqsave(&pdc_lock, flags);
767 /* BCJ-XXXX series boxes. E.G. "9000/785/C3000" */
768 #define IS_SPROCKETS() (strlen(boot_cpu_data.pdc.sys_model_name) == 14 && \
769 strncmp(boot_cpu_data.pdc.sys_model_name, "9000/785", 8) == 0)
771 retval = mem_pdc_call(PDC_INITIATOR, PDC_GET_INITIATOR,
772 __pa(pdc_result), __pa(hwpath));
773 if (retval < PDC_OK)
774 goto out;
776 if (pdc_result[0] < 16) {
777 initiator->host_id = pdc_result[0];
778 } else {
779 initiator->host_id = -1;
783 * Sprockets and Piranha return 20 or 40 (MT/s). Prelude returns
784 * 1, 2, 5 or 10 for 5, 10, 20 or 40 MT/s, respectively
786 switch (pdc_result[1]) {
787 case 1: initiator->factor = 50; break;
788 case 2: initiator->factor = 25; break;
789 case 5: initiator->factor = 12; break;
790 case 25: initiator->factor = 10; break;
791 case 20: initiator->factor = 12; break;
792 case 40: initiator->factor = 10; break;
793 default: initiator->factor = -1; break;
796 if (IS_SPROCKETS()) {
797 initiator->width = pdc_result[4];
798 initiator->mode = pdc_result[5];
799 } else {
800 initiator->width = -1;
801 initiator->mode = -1;
804 out:
805 spin_unlock_irqrestore(&pdc_lock, flags);
807 return (retval >= PDC_OK);
809 EXPORT_SYMBOL(pdc_get_initiator);
813 * pdc_pci_irt_size - Get the number of entries in the interrupt routing table.
814 * @num_entries: The return value.
815 * @hpa: The HPA for the device.
817 * This PDC function returns the number of entries in the specified cell's
818 * interrupt table.
819 * Similar to PDC_PAT stuff - but added for Forte/Allegro boxes
821 int pdc_pci_irt_size(unsigned long *num_entries, unsigned long hpa)
823 int retval;
824 unsigned long flags;
826 spin_lock_irqsave(&pdc_lock, flags);
827 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_GET_INT_TBL_SIZE,
828 __pa(pdc_result), hpa);
829 convert_to_wide(pdc_result);
830 *num_entries = pdc_result[0];
831 spin_unlock_irqrestore(&pdc_lock, flags);
833 return retval;
836 /**
837 * pdc_pci_irt - Get the PCI interrupt routing table.
838 * @num_entries: The number of entries in the table.
839 * @hpa: The Hard Physical Address of the device.
840 * @tbl:
842 * Get the PCI interrupt routing table for the device at the given HPA.
843 * Similar to PDC_PAT stuff - but added for Forte/Allegro boxes
845 int pdc_pci_irt(unsigned long num_entries, unsigned long hpa, void *tbl)
847 int retval;
848 unsigned long flags;
850 BUG_ON((unsigned long)tbl & 0x7);
852 spin_lock_irqsave(&pdc_lock, flags);
853 pdc_result[0] = num_entries;
854 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_GET_INT_TBL,
855 __pa(pdc_result), hpa, __pa(tbl));
856 spin_unlock_irqrestore(&pdc_lock, flags);
858 return retval;
862 #if 0 /* UNTEST CODE - left here in case someone needs it */
864 /**
865 * pdc_pci_config_read - read PCI config space.
866 * @hpa token from PDC to indicate which PCI device
867 * @pci_addr configuration space address to read from
869 * Read PCI Configuration space *before* linux PCI subsystem is running.
871 unsigned int pdc_pci_config_read(void *hpa, unsigned long cfg_addr)
873 int retval;
874 unsigned long flags;
876 spin_lock_irqsave(&pdc_lock, flags);
877 pdc_result[0] = 0;
878 pdc_result[1] = 0;
879 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_READ_CONFIG,
880 __pa(pdc_result), hpa, cfg_addr&~3UL, 4UL);
881 spin_unlock_irqrestore(&pdc_lock, flags);
883 return retval ? ~0 : (unsigned int) pdc_result[0];
887 /**
888 * pdc_pci_config_write - read PCI config space.
889 * @hpa token from PDC to indicate which PCI device
890 * @pci_addr configuration space address to write
891 * @val value we want in the 32-bit register
893 * Write PCI Configuration space *before* linux PCI subsystem is running.
895 void pdc_pci_config_write(void *hpa, unsigned long cfg_addr, unsigned int val)
897 int retval;
898 unsigned long flags;
900 spin_lock_irqsave(&pdc_lock, flags);
901 pdc_result[0] = 0;
902 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_WRITE_CONFIG,
903 __pa(pdc_result), hpa,
904 cfg_addr&~3UL, 4UL, (unsigned long) val);
905 spin_unlock_irqrestore(&pdc_lock, flags);
907 return retval;
909 #endif /* UNTESTED CODE */
912 * pdc_tod_read - Read the Time-Of-Day clock.
913 * @tod: The return buffer:
915 * Read the Time-Of-Day clock
917 int pdc_tod_read(struct pdc_tod *tod)
919 int retval;
920 unsigned long flags;
922 spin_lock_irqsave(&pdc_lock, flags);
923 retval = mem_pdc_call(PDC_TOD, PDC_TOD_READ, __pa(pdc_result), 0);
924 convert_to_wide(pdc_result);
925 memcpy(tod, pdc_result, sizeof(*tod));
926 spin_unlock_irqrestore(&pdc_lock, flags);
928 return retval;
930 EXPORT_SYMBOL(pdc_tod_read);
933 * pdc_tod_set - Set the Time-Of-Day clock.
934 * @sec: The number of seconds since epoch.
935 * @usec: The number of micro seconds.
937 * Set the Time-Of-Day clock.
939 int pdc_tod_set(unsigned long sec, unsigned long usec)
941 int retval;
942 unsigned long flags;
944 spin_lock_irqsave(&pdc_lock, flags);
945 retval = mem_pdc_call(PDC_TOD, PDC_TOD_WRITE, sec, usec);
946 spin_unlock_irqrestore(&pdc_lock, flags);
948 return retval;
950 EXPORT_SYMBOL(pdc_tod_set);
952 #ifdef CONFIG_64BIT
953 int pdc_mem_mem_table(struct pdc_memory_table_raddr *r_addr,
954 struct pdc_memory_table *tbl, unsigned long entries)
956 int retval;
957 unsigned long flags;
959 spin_lock_irqsave(&pdc_lock, flags);
960 retval = mem_pdc_call(PDC_MEM, PDC_MEM_TABLE, __pa(pdc_result), __pa(pdc_result2), entries);
961 convert_to_wide(pdc_result);
962 memcpy(r_addr, pdc_result, sizeof(*r_addr));
963 memcpy(tbl, pdc_result2, entries * sizeof(*tbl));
964 spin_unlock_irqrestore(&pdc_lock, flags);
966 return retval;
968 #endif /* CONFIG_64BIT */
970 /* FIXME: Is this pdc used? I could not find type reference to ftc_bitmap
971 * so I guessed at unsigned long. Someone who knows what this does, can fix
972 * it later. :)
974 int pdc_do_firm_test_reset(unsigned long ftc_bitmap)
976 int retval;
977 unsigned long flags;
979 spin_lock_irqsave(&pdc_lock, flags);
980 retval = mem_pdc_call(PDC_BROADCAST_RESET, PDC_DO_FIRM_TEST_RESET,
981 PDC_FIRM_TEST_MAGIC, ftc_bitmap);
982 spin_unlock_irqrestore(&pdc_lock, flags);
984 return retval;
988 * pdc_do_reset - Reset the system.
990 * Reset the system.
992 int pdc_do_reset(void)
994 int retval;
995 unsigned long flags;
997 spin_lock_irqsave(&pdc_lock, flags);
998 retval = mem_pdc_call(PDC_BROADCAST_RESET, PDC_DO_RESET);
999 spin_unlock_irqrestore(&pdc_lock, flags);
1001 return retval;
1005 * pdc_soft_power_info - Enable soft power switch.
1006 * @power_reg: address of soft power register
1008 * Return the absolute address of the soft power switch register
1010 int __init pdc_soft_power_info(unsigned long *power_reg)
1012 int retval;
1013 unsigned long flags;
1015 *power_reg = (unsigned long) (-1);
1017 spin_lock_irqsave(&pdc_lock, flags);
1018 retval = mem_pdc_call(PDC_SOFT_POWER, PDC_SOFT_POWER_INFO, __pa(pdc_result), 0);
1019 if (retval == PDC_OK) {
1020 convert_to_wide(pdc_result);
1021 *power_reg = f_extend(pdc_result[0]);
1023 spin_unlock_irqrestore(&pdc_lock, flags);
1025 return retval;
1029 * pdc_soft_power_button - Control the soft power button behaviour
1030 * @sw_control: 0 for hardware control, 1 for software control
1033 * This PDC function places the soft power button under software or
1034 * hardware control.
1035 * Under software control the OS may control to when to allow to shut
1036 * down the system. Under hardware control pressing the power button
1037 * powers off the system immediately.
1039 int pdc_soft_power_button(int sw_control)
1041 int retval;
1042 unsigned long flags;
1044 spin_lock_irqsave(&pdc_lock, flags);
1045 retval = mem_pdc_call(PDC_SOFT_POWER, PDC_SOFT_POWER_ENABLE, __pa(pdc_result), sw_control);
1046 spin_unlock_irqrestore(&pdc_lock, flags);
1048 return retval;
1052 * pdc_io_reset - Hack to avoid overlapping range registers of Bridges devices.
1053 * Primarily a problem on T600 (which parisc-linux doesn't support) but
1054 * who knows what other platform firmware might do with this OS "hook".
1056 void pdc_io_reset(void)
1058 unsigned long flags;
1060 spin_lock_irqsave(&pdc_lock, flags);
1061 mem_pdc_call(PDC_IO, PDC_IO_RESET, 0);
1062 spin_unlock_irqrestore(&pdc_lock, flags);
1066 * pdc_io_reset_devices - Hack to Stop USB controller
1068 * If PDC used the usb controller, the usb controller
1069 * is still running and will crash the machines during iommu
1070 * setup, because of still running DMA. This PDC call
1071 * stops the USB controller.
1072 * Normally called after calling pdc_io_reset().
1074 void pdc_io_reset_devices(void)
1076 unsigned long flags;
1078 spin_lock_irqsave(&pdc_lock, flags);
1079 mem_pdc_call(PDC_IO, PDC_IO_RESET_DEVICES, 0);
1080 spin_unlock_irqrestore(&pdc_lock, flags);
1083 /* locked by pdc_console_lock */
1084 static int __attribute__((aligned(8))) iodc_retbuf[32];
1085 static char __attribute__((aligned(64))) iodc_dbuf[4096];
1088 * pdc_iodc_print - Console print using IODC.
1089 * @str: the string to output.
1090 * @count: length of str
1092 * Note that only these special chars are architected for console IODC io:
1093 * BEL, BS, CR, and LF. Others are passed through.
1094 * Since the HP console requires CR+LF to perform a 'newline', we translate
1095 * "\n" to "\r\n".
1097 int pdc_iodc_print(const unsigned char *str, unsigned count)
1099 static int posx; /* for simple TAB-Simulation... */
1100 unsigned int i;
1101 unsigned long flags;
1103 for (i = 0; i < count && i < 79;) {
1104 switch(str[i]) {
1105 case '\n':
1106 iodc_dbuf[i+0] = '\r';
1107 iodc_dbuf[i+1] = '\n';
1108 i += 2;
1109 posx = 0;
1110 goto print;
1111 case '\t':
1112 while (posx & 7) {
1113 iodc_dbuf[i] = ' ';
1114 i++, posx++;
1116 break;
1117 case '\b': /* BS */
1118 posx -= 2;
1119 default:
1120 iodc_dbuf[i] = str[i];
1121 i++, posx++;
1122 break;
1126 /* if we're at the end of line, and not already inserting a newline,
1127 * insert one anyway. iodc console doesn't claim to support >79 char
1128 * lines. don't account for this in the return value.
1130 if (i == 79 && iodc_dbuf[i-1] != '\n') {
1131 iodc_dbuf[i+0] = '\r';
1132 iodc_dbuf[i+1] = '\n';
1135 print:
1136 spin_lock_irqsave(&pdc_lock, flags);
1137 real32_call(PAGE0->mem_cons.iodc_io,
1138 (unsigned long)PAGE0->mem_cons.hpa, ENTRY_IO_COUT,
1139 PAGE0->mem_cons.spa, __pa(PAGE0->mem_cons.dp.layers),
1140 __pa(iodc_retbuf), 0, __pa(iodc_dbuf), i, 0);
1141 spin_unlock_irqrestore(&pdc_lock, flags);
1143 return i;
1147 * pdc_iodc_getc - Read a character (non-blocking) from the PDC console.
1149 * Read a character (non-blocking) from the PDC console, returns -1 if
1150 * key is not present.
1152 int pdc_iodc_getc(void)
1154 int ch;
1155 int status;
1156 unsigned long flags;
1158 /* Bail if no console input device. */
1159 if (!PAGE0->mem_kbd.iodc_io)
1160 return 0;
1162 /* wait for a keyboard (rs232)-input */
1163 spin_lock_irqsave(&pdc_lock, flags);
1164 real32_call(PAGE0->mem_kbd.iodc_io,
1165 (unsigned long)PAGE0->mem_kbd.hpa, ENTRY_IO_CIN,
1166 PAGE0->mem_kbd.spa, __pa(PAGE0->mem_kbd.dp.layers),
1167 __pa(iodc_retbuf), 0, __pa(iodc_dbuf), 1, 0);
1169 ch = *iodc_dbuf;
1170 status = *iodc_retbuf;
1171 spin_unlock_irqrestore(&pdc_lock, flags);
1173 if (status == 0)
1174 return -1;
1176 return ch;
1179 int pdc_sti_call(unsigned long func, unsigned long flags,
1180 unsigned long inptr, unsigned long outputr,
1181 unsigned long glob_cfg)
1183 int retval;
1184 unsigned long irqflags;
1186 spin_lock_irqsave(&pdc_lock, irqflags);
1187 retval = real32_call(func, flags, inptr, outputr, glob_cfg);
1188 spin_unlock_irqrestore(&pdc_lock, irqflags);
1190 return retval;
1192 EXPORT_SYMBOL(pdc_sti_call);
1194 #ifdef CONFIG_64BIT
1196 * pdc_pat_cell_get_number - Returns the cell number.
1197 * @cell_info: The return buffer.
1199 * This PDC call returns the cell number of the cell from which the call
1200 * is made.
1202 int pdc_pat_cell_get_number(struct pdc_pat_cell_num *cell_info)
1204 int retval;
1205 unsigned long flags;
1207 spin_lock_irqsave(&pdc_lock, flags);
1208 retval = mem_pdc_call(PDC_PAT_CELL, PDC_PAT_CELL_GET_NUMBER, __pa(pdc_result));
1209 memcpy(cell_info, pdc_result, sizeof(*cell_info));
1210 spin_unlock_irqrestore(&pdc_lock, flags);
1212 return retval;
1216 * pdc_pat_cell_module - Retrieve the cell's module information.
1217 * @actcnt: The number of bytes written to mem_addr.
1218 * @ploc: The physical location.
1219 * @mod: The module index.
1220 * @view_type: The view of the address type.
1221 * @mem_addr: The return buffer.
1223 * This PDC call returns information about each module attached to the cell
1224 * at the specified location.
1226 int pdc_pat_cell_module(unsigned long *actcnt, unsigned long ploc, unsigned long mod,
1227 unsigned long view_type, void *mem_addr)
1229 int retval;
1230 unsigned long flags;
1231 static struct pdc_pat_cell_mod_maddr_block result __attribute__ ((aligned (8)));
1233 spin_lock_irqsave(&pdc_lock, flags);
1234 retval = mem_pdc_call(PDC_PAT_CELL, PDC_PAT_CELL_MODULE, __pa(pdc_result),
1235 ploc, mod, view_type, __pa(&result));
1236 if(!retval) {
1237 *actcnt = pdc_result[0];
1238 memcpy(mem_addr, &result, *actcnt);
1240 spin_unlock_irqrestore(&pdc_lock, flags);
1242 return retval;
1246 * pdc_pat_cpu_get_number - Retrieve the cpu number.
1247 * @cpu_info: The return buffer.
1248 * @hpa: The Hard Physical Address of the CPU.
1250 * Retrieve the cpu number for the cpu at the specified HPA.
1252 int pdc_pat_cpu_get_number(struct pdc_pat_cpu_num *cpu_info, void *hpa)
1254 int retval;
1255 unsigned long flags;
1257 spin_lock_irqsave(&pdc_lock, flags);
1258 retval = mem_pdc_call(PDC_PAT_CPU, PDC_PAT_CPU_GET_NUMBER,
1259 __pa(&pdc_result), hpa);
1260 memcpy(cpu_info, pdc_result, sizeof(*cpu_info));
1261 spin_unlock_irqrestore(&pdc_lock, flags);
1263 return retval;
1267 * pdc_pat_get_irt_size - Retrieve the number of entries in the cell's interrupt table.
1268 * @num_entries: The return value.
1269 * @cell_num: The target cell.
1271 * This PDC function returns the number of entries in the specified cell's
1272 * interrupt table.
1274 int pdc_pat_get_irt_size(unsigned long *num_entries, unsigned long cell_num)
1276 int retval;
1277 unsigned long flags;
1279 spin_lock_irqsave(&pdc_lock, flags);
1280 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_GET_PCI_ROUTING_TABLE_SIZE,
1281 __pa(pdc_result), cell_num);
1282 *num_entries = pdc_result[0];
1283 spin_unlock_irqrestore(&pdc_lock, flags);
1285 return retval;
1289 * pdc_pat_get_irt - Retrieve the cell's interrupt table.
1290 * @r_addr: The return buffer.
1291 * @cell_num: The target cell.
1293 * This PDC function returns the actual interrupt table for the specified cell.
1295 int pdc_pat_get_irt(void *r_addr, unsigned long cell_num)
1297 int retval;
1298 unsigned long flags;
1300 spin_lock_irqsave(&pdc_lock, flags);
1301 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_GET_PCI_ROUTING_TABLE,
1302 __pa(r_addr), cell_num);
1303 spin_unlock_irqrestore(&pdc_lock, flags);
1305 return retval;
1309 * pdc_pat_pd_get_addr_map - Retrieve information about memory address ranges.
1310 * @actlen: The return buffer.
1311 * @mem_addr: Pointer to the memory buffer.
1312 * @count: The number of bytes to read from the buffer.
1313 * @offset: The offset with respect to the beginning of the buffer.
1316 int pdc_pat_pd_get_addr_map(unsigned long *actual_len, void *mem_addr,
1317 unsigned long count, unsigned long offset)
1319 int retval;
1320 unsigned long flags;
1322 spin_lock_irqsave(&pdc_lock, flags);
1323 retval = mem_pdc_call(PDC_PAT_PD, PDC_PAT_PD_GET_ADDR_MAP, __pa(pdc_result),
1324 __pa(pdc_result2), count, offset);
1325 *actual_len = pdc_result[0];
1326 memcpy(mem_addr, pdc_result2, *actual_len);
1327 spin_unlock_irqrestore(&pdc_lock, flags);
1329 return retval;
1333 * pdc_pat_io_pci_cfg_read - Read PCI configuration space.
1334 * @pci_addr: PCI configuration space address for which the read request is being made.
1335 * @pci_size: Size of read in bytes. Valid values are 1, 2, and 4.
1336 * @mem_addr: Pointer to return memory buffer.
1339 int pdc_pat_io_pci_cfg_read(unsigned long pci_addr, int pci_size, u32 *mem_addr)
1341 int retval;
1342 unsigned long flags;
1344 spin_lock_irqsave(&pdc_lock, flags);
1345 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_PCI_CONFIG_READ,
1346 __pa(pdc_result), pci_addr, pci_size);
1347 switch(pci_size) {
1348 case 1: *(u8 *) mem_addr = (u8) pdc_result[0];
1349 case 2: *(u16 *)mem_addr = (u16) pdc_result[0];
1350 case 4: *(u32 *)mem_addr = (u32) pdc_result[0];
1352 spin_unlock_irqrestore(&pdc_lock, flags);
1354 return retval;
1358 * pdc_pat_io_pci_cfg_write - Retrieve information about memory address ranges.
1359 * @pci_addr: PCI configuration space address for which the write request is being made.
1360 * @pci_size: Size of write in bytes. Valid values are 1, 2, and 4.
1361 * @value: Pointer to 1, 2, or 4 byte value in low order end of argument to be
1362 * written to PCI Config space.
1365 int pdc_pat_io_pci_cfg_write(unsigned long pci_addr, int pci_size, u32 val)
1367 int retval;
1368 unsigned long flags;
1370 spin_lock_irqsave(&pdc_lock, flags);
1371 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_PCI_CONFIG_WRITE,
1372 pci_addr, pci_size, val);
1373 spin_unlock_irqrestore(&pdc_lock, flags);
1375 return retval;
1377 #endif /* CONFIG_64BIT */
1380 /***************** 32-bit real-mode calls ***********/
1381 /* The struct below is used
1382 * to overlay real_stack (real2.S), preparing a 32-bit call frame.
1383 * real32_call_asm() then uses this stack in narrow real mode
1386 struct narrow_stack {
1387 /* use int, not long which is 64 bits */
1388 unsigned int arg13;
1389 unsigned int arg12;
1390 unsigned int arg11;
1391 unsigned int arg10;
1392 unsigned int arg9;
1393 unsigned int arg8;
1394 unsigned int arg7;
1395 unsigned int arg6;
1396 unsigned int arg5;
1397 unsigned int arg4;
1398 unsigned int arg3;
1399 unsigned int arg2;
1400 unsigned int arg1;
1401 unsigned int arg0;
1402 unsigned int frame_marker[8];
1403 unsigned int sp;
1404 /* in reality, there's nearly 8k of stack after this */
1407 long real32_call(unsigned long fn, ...)
1409 va_list args;
1410 extern struct narrow_stack real_stack;
1411 extern unsigned long real32_call_asm(unsigned int *,
1412 unsigned int *,
1413 unsigned int);
1415 va_start(args, fn);
1416 real_stack.arg0 = va_arg(args, unsigned int);
1417 real_stack.arg1 = va_arg(args, unsigned int);
1418 real_stack.arg2 = va_arg(args, unsigned int);
1419 real_stack.arg3 = va_arg(args, unsigned int);
1420 real_stack.arg4 = va_arg(args, unsigned int);
1421 real_stack.arg5 = va_arg(args, unsigned int);
1422 real_stack.arg6 = va_arg(args, unsigned int);
1423 real_stack.arg7 = va_arg(args, unsigned int);
1424 real_stack.arg8 = va_arg(args, unsigned int);
1425 real_stack.arg9 = va_arg(args, unsigned int);
1426 real_stack.arg10 = va_arg(args, unsigned int);
1427 real_stack.arg11 = va_arg(args, unsigned int);
1428 real_stack.arg12 = va_arg(args, unsigned int);
1429 real_stack.arg13 = va_arg(args, unsigned int);
1430 va_end(args);
1432 return real32_call_asm(&real_stack.sp, &real_stack.arg0, fn);
1435 #ifdef CONFIG_64BIT
1436 /***************** 64-bit real-mode calls ***********/
1438 struct wide_stack {
1439 unsigned long arg0;
1440 unsigned long arg1;
1441 unsigned long arg2;
1442 unsigned long arg3;
1443 unsigned long arg4;
1444 unsigned long arg5;
1445 unsigned long arg6;
1446 unsigned long arg7;
1447 unsigned long arg8;
1448 unsigned long arg9;
1449 unsigned long arg10;
1450 unsigned long arg11;
1451 unsigned long arg12;
1452 unsigned long arg13;
1453 unsigned long frame_marker[2]; /* rp, previous sp */
1454 unsigned long sp;
1455 /* in reality, there's nearly 8k of stack after this */
1458 long real64_call(unsigned long fn, ...)
1460 va_list args;
1461 extern struct wide_stack real64_stack;
1462 extern unsigned long real64_call_asm(unsigned long *,
1463 unsigned long *,
1464 unsigned long);
1466 va_start(args, fn);
1467 real64_stack.arg0 = va_arg(args, unsigned long);
1468 real64_stack.arg1 = va_arg(args, unsigned long);
1469 real64_stack.arg2 = va_arg(args, unsigned long);
1470 real64_stack.arg3 = va_arg(args, unsigned long);
1471 real64_stack.arg4 = va_arg(args, unsigned long);
1472 real64_stack.arg5 = va_arg(args, unsigned long);
1473 real64_stack.arg6 = va_arg(args, unsigned long);
1474 real64_stack.arg7 = va_arg(args, unsigned long);
1475 real64_stack.arg8 = va_arg(args, unsigned long);
1476 real64_stack.arg9 = va_arg(args, unsigned long);
1477 real64_stack.arg10 = va_arg(args, unsigned long);
1478 real64_stack.arg11 = va_arg(args, unsigned long);
1479 real64_stack.arg12 = va_arg(args, unsigned long);
1480 real64_stack.arg13 = va_arg(args, unsigned long);
1481 va_end(args);
1483 return real64_call_asm(&real64_stack.sp, &real64_stack.arg0, fn);
1486 #endif /* CONFIG_64BIT */