1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58#include <stdarg.h>
59
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>
66
67#include <asm/page.h>
68#include <asm/pdc.h>
69#include <asm/pdcpat.h>
70#include <asm/processor.h>
71
72static DEFINE_SPINLOCK(pdc_lock);
73extern unsigned long pdc_result[NUM_PDC_RESULT];
74extern unsigned long pdc_result2[NUM_PDC_RESULT];
75
76#ifdef CONFIG_64BIT
77#define WIDE_FIRMWARE 0x1
78#define NARROW_FIRMWARE 0x2
79
80
81
82int parisc_narrow_firmware __read_mostly = 1;
83#endif
84
85
86
87
88
89
90
91
92
93
94
95
96#ifdef CONFIG_64BIT
97long real64_call(unsigned long function, ...);
98#endif
99long real32_call(unsigned long function, ...);
100
101#ifdef CONFIG_64BIT
102# define MEM_PDC (unsigned long)(PAGE0->mem_pdc_hi) << 32 | PAGE0->mem_pdc
103# define mem_pdc_call(args...) unlikely(parisc_narrow_firmware) ? real32_call(MEM_PDC, args) : real64_call(MEM_PDC, args)
104#else
105# define MEM_PDC (unsigned long)PAGE0->mem_pdc
106# define mem_pdc_call(args...) real32_call(MEM_PDC, args)
107#endif
108
109
110
111
112
113
114
115
116
117static unsigned long f_extend(unsigned long address)
118{
119#ifdef CONFIG_64BIT
120 if(unlikely(parisc_narrow_firmware)) {
121 if((address & 0xff000000) == 0xf0000000)
122 return 0xf0f0f0f000000000UL | (u32)address;
123
124 if((address & 0xf0000000) == 0xf0000000)
125 return 0xffffffff00000000UL | (u32)address;
126 }
127#endif
128 return address;
129}
130
131
132
133
134
135
136
137
138
139static void convert_to_wide(unsigned long *addr)
140{
141#ifdef CONFIG_64BIT
142 int i;
143 unsigned int *p = (unsigned int *)addr;
144
145 if(unlikely(parisc_narrow_firmware)) {
146 for(i = 31; i >= 0; --i)
147 addr[i] = p[i];
148 }
149#endif
150}
151
152#ifdef CONFIG_64BIT
153void set_firmware_width_unlocked(void)
154{
155 int ret;
156
157 ret = mem_pdc_call(PDC_MODEL, PDC_MODEL_CAPABILITIES,
158 __pa(pdc_result), 0);
159 convert_to_wide(pdc_result);
160 if (pdc_result[0] != NARROW_FIRMWARE)
161 parisc_narrow_firmware = 0;
162}
163
164
165
166
167
168
169
170void set_firmware_width(void)
171{
172 unsigned long flags;
173 spin_lock_irqsave(&pdc_lock, flags);
174 set_firmware_width_unlocked();
175 spin_unlock_irqrestore(&pdc_lock, flags);
176}
177#else
178void set_firmware_width_unlocked(void)
179{
180 return;
181}
182
183void set_firmware_width(void)
184{
185 return;
186}
187#endif
188
189
190
191
192
193
194
195void pdc_emergency_unlock(void)
196{
197
198 if (spin_is_locked(&pdc_lock))
199 spin_unlock(&pdc_lock);
200}
201
202
203
204
205
206
207
208
209
210
211
212int pdc_add_valid(unsigned long address)
213{
214 int retval;
215 unsigned long flags;
216
217 spin_lock_irqsave(&pdc_lock, flags);
218 retval = mem_pdc_call(PDC_ADD_VALID, PDC_ADD_VALID_VERIFY, address);
219 spin_unlock_irqrestore(&pdc_lock, flags);
220
221 return retval;
222}
223EXPORT_SYMBOL(pdc_add_valid);
224
225
226
227
228
229
230
231
232
233int __init pdc_chassis_info(struct pdc_chassis_info *chassis_info, void *led_info, unsigned long len)
234{
235 int retval;
236 unsigned long flags;
237
238 spin_lock_irqsave(&pdc_lock, flags);
239 memcpy(&pdc_result, chassis_info, sizeof(*chassis_info));
240 memcpy(&pdc_result2, led_info, len);
241 retval = mem_pdc_call(PDC_CHASSIS, PDC_RETURN_CHASSIS_INFO,
242 __pa(pdc_result), __pa(pdc_result2), len);
243 memcpy(chassis_info, pdc_result, sizeof(*chassis_info));
244 memcpy(led_info, pdc_result2, len);
245 spin_unlock_irqrestore(&pdc_lock, flags);
246
247 return retval;
248}
249
250
251
252
253
254
255
256#ifdef CONFIG_64BIT
257int pdc_pat_chassis_send_log(unsigned long state, unsigned long data)
258{
259 int retval = 0;
260 unsigned long flags;
261
262 if (!is_pdc_pat())
263 return -1;
264
265 spin_lock_irqsave(&pdc_lock, flags);
266 retval = mem_pdc_call(PDC_PAT_CHASSIS_LOG, PDC_PAT_CHASSIS_WRITE_LOG, __pa(&state), __pa(&data));
267 spin_unlock_irqrestore(&pdc_lock, flags);
268
269 return retval;
270}
271#endif
272
273
274
275
276
277int pdc_chassis_disp(unsigned long disp)
278{
279 int retval = 0;
280 unsigned long flags;
281
282 spin_lock_irqsave(&pdc_lock, flags);
283 retval = mem_pdc_call(PDC_CHASSIS, PDC_CHASSIS_DISP, disp);
284 spin_unlock_irqrestore(&pdc_lock, flags);
285
286 return retval;
287}
288
289
290
291
292
293int pdc_chassis_warn(unsigned long *warn)
294{
295 int retval = 0;
296 unsigned long flags;
297
298 spin_lock_irqsave(&pdc_lock, flags);
299 retval = mem_pdc_call(PDC_CHASSIS, PDC_CHASSIS_WARN, __pa(pdc_result));
300 *warn = pdc_result[0];
301 spin_unlock_irqrestore(&pdc_lock, flags);
302
303 return retval;
304}
305
306int pdc_coproc_cfg_unlocked(struct pdc_coproc_cfg *pdc_coproc_info)
307{
308 int ret;
309
310 ret = mem_pdc_call(PDC_COPROC, PDC_COPROC_CFG, __pa(pdc_result));
311 convert_to_wide(pdc_result);
312 pdc_coproc_info->ccr_functional = pdc_result[0];
313 pdc_coproc_info->ccr_present = pdc_result[1];
314 pdc_coproc_info->revision = pdc_result[17];
315 pdc_coproc_info->model = pdc_result[18];
316
317 return ret;
318}
319
320
321
322
323
324
325
326
327int pdc_coproc_cfg(struct pdc_coproc_cfg *pdc_coproc_info)
328{
329 int ret;
330 unsigned long flags;
331
332 spin_lock_irqsave(&pdc_lock, flags);
333 ret = pdc_coproc_cfg_unlocked(pdc_coproc_info);
334 spin_unlock_irqrestore(&pdc_lock, flags);
335
336 return ret;
337}
338
339
340
341
342
343
344
345
346
347
348
349
350int pdc_iodc_read(unsigned long *actcnt, unsigned long hpa, unsigned int index,
351 void *iodc_data, unsigned int iodc_data_size)
352{
353 int retval;
354 unsigned long flags;
355
356 spin_lock_irqsave(&pdc_lock, flags);
357 retval = mem_pdc_call(PDC_IODC, PDC_IODC_READ, __pa(pdc_result), hpa,
358 index, __pa(pdc_result2), iodc_data_size);
359 convert_to_wide(pdc_result);
360 *actcnt = pdc_result[0];
361 memcpy(iodc_data, pdc_result2, iodc_data_size);
362 spin_unlock_irqrestore(&pdc_lock, flags);
363
364 return retval;
365}
366EXPORT_SYMBOL(pdc_iodc_read);
367
368
369
370
371
372
373
374
375
376
377int pdc_system_map_find_mods(struct pdc_system_map_mod_info *pdc_mod_info,
378 struct pdc_module_path *mod_path, long mod_index)
379{
380 int retval;
381 unsigned long flags;
382
383 spin_lock_irqsave(&pdc_lock, flags);
384 retval = mem_pdc_call(PDC_SYSTEM_MAP, PDC_FIND_MODULE, __pa(pdc_result),
385 __pa(pdc_result2), mod_index);
386 convert_to_wide(pdc_result);
387 memcpy(pdc_mod_info, pdc_result, sizeof(*pdc_mod_info));
388 memcpy(mod_path, pdc_result2, sizeof(*mod_path));
389 spin_unlock_irqrestore(&pdc_lock, flags);
390
391 pdc_mod_info->mod_addr = f_extend(pdc_mod_info->mod_addr);
392 return retval;
393}
394
395
396
397
398
399
400
401
402
403
404int pdc_system_map_find_addrs(struct pdc_system_map_addr_info *pdc_addr_info,
405 long mod_index, long addr_index)
406{
407 int retval;
408 unsigned long flags;
409
410 spin_lock_irqsave(&pdc_lock, flags);
411 retval = mem_pdc_call(PDC_SYSTEM_MAP, PDC_FIND_ADDRESS, __pa(pdc_result),
412 mod_index, addr_index);
413 convert_to_wide(pdc_result);
414 memcpy(pdc_addr_info, pdc_result, sizeof(*pdc_addr_info));
415 spin_unlock_irqrestore(&pdc_lock, flags);
416
417 pdc_addr_info->mod_addr = f_extend(pdc_addr_info->mod_addr);
418 return retval;
419}
420
421
422
423
424
425
426
427int pdc_model_info(struct pdc_model *model)
428{
429 int retval;
430 unsigned long flags;
431
432 spin_lock_irqsave(&pdc_lock, flags);
433 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_INFO, __pa(pdc_result), 0);
434 convert_to_wide(pdc_result);
435 memcpy(model, pdc_result, sizeof(*model));
436 spin_unlock_irqrestore(&pdc_lock, flags);
437
438 return retval;
439}
440
441
442
443
444
445
446
447
448
449int pdc_model_sysmodel(char *name)
450{
451 int retval;
452 unsigned long flags;
453
454 spin_lock_irqsave(&pdc_lock, flags);
455 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_SYSMODEL, __pa(pdc_result),
456 OS_ID_HPUX, __pa(name));
457 convert_to_wide(pdc_result);
458
459 if (retval == PDC_OK) {
460 name[pdc_result[0]] = '\0';
461 } else {
462 name[0] = 0;
463 }
464 spin_unlock_irqrestore(&pdc_lock, flags);
465
466 return retval;
467}
468
469
470
471
472
473
474
475
476
477
478
479int pdc_model_versions(unsigned long *versions, int id)
480{
481 int retval;
482 unsigned long flags;
483
484 spin_lock_irqsave(&pdc_lock, flags);
485 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_VERSIONS, __pa(pdc_result), id);
486 convert_to_wide(pdc_result);
487 *versions = pdc_result[0];
488 spin_unlock_irqrestore(&pdc_lock, flags);
489
490 return retval;
491}
492
493
494
495
496
497
498
499
500int pdc_model_cpuid(unsigned long *cpu_id)
501{
502 int retval;
503 unsigned long flags;
504
505 spin_lock_irqsave(&pdc_lock, flags);
506 pdc_result[0] = 0;
507 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_CPU_ID, __pa(pdc_result), 0);
508 convert_to_wide(pdc_result);
509 *cpu_id = pdc_result[0];
510 spin_unlock_irqrestore(&pdc_lock, flags);
511
512 return retval;
513}
514
515
516
517
518
519
520
521
522int pdc_model_capabilities(unsigned long *capabilities)
523{
524 int retval;
525 unsigned long flags;
526
527 spin_lock_irqsave(&pdc_lock, flags);
528 pdc_result[0] = 0;
529 retval = mem_pdc_call(PDC_MODEL, PDC_MODEL_CAPABILITIES, __pa(pdc_result), 0);
530 convert_to_wide(pdc_result);
531 if (retval == PDC_OK) {
532 *capabilities = pdc_result[0];
533 } else {
534 *capabilities = PDC_MODEL_OS32;
535 }
536 spin_unlock_irqrestore(&pdc_lock, flags);
537
538 return retval;
539}
540
541
542
543
544
545
546
547int pdc_cache_info(struct pdc_cache_info *cache_info)
548{
549 int retval;
550 unsigned long flags;
551
552 spin_lock_irqsave(&pdc_lock, flags);
553 retval = mem_pdc_call(PDC_CACHE, PDC_CACHE_INFO, __pa(pdc_result), 0);
554 convert_to_wide(pdc_result);
555 memcpy(cache_info, pdc_result, sizeof(*cache_info));
556 spin_unlock_irqrestore(&pdc_lock, flags);
557
558 return retval;
559}
560
561
562
563
564
565
566
567int pdc_spaceid_bits(unsigned long *space_bits)
568{
569 int retval;
570 unsigned long flags;
571
572 spin_lock_irqsave(&pdc_lock, flags);
573 pdc_result[0] = 0;
574 retval = mem_pdc_call(PDC_CACHE, PDC_CACHE_RET_SPID, __pa(pdc_result), 0);
575 convert_to_wide(pdc_result);
576 *space_bits = pdc_result[0];
577 spin_unlock_irqrestore(&pdc_lock, flags);
578
579 return retval;
580}
581
582#ifndef CONFIG_PA20
583
584
585
586
587
588
589int pdc_btlb_info(struct pdc_btlb_info *btlb)
590{
591 int retval;
592 unsigned long flags;
593
594 spin_lock_irqsave(&pdc_lock, flags);
595 retval = mem_pdc_call(PDC_BLOCK_TLB, PDC_BTLB_INFO, __pa(pdc_result), 0);
596 memcpy(btlb, pdc_result, sizeof(*btlb));
597 spin_unlock_irqrestore(&pdc_lock, flags);
598
599 if(retval < 0) {
600 btlb->max_size = 0;
601 }
602 return retval;
603}
604
605
606
607
608
609
610
611
612
613
614
615
616
617int pdc_mem_map_hpa(struct pdc_memory_map *address,
618 struct pdc_module_path *mod_path)
619{
620 int retval;
621 unsigned long flags;
622
623 spin_lock_irqsave(&pdc_lock, flags);
624 memcpy(pdc_result2, mod_path, sizeof(*mod_path));
625 retval = mem_pdc_call(PDC_MEM_MAP, PDC_MEM_MAP_HPA, __pa(pdc_result),
626 __pa(pdc_result2));
627 memcpy(address, pdc_result, sizeof(*address));
628 spin_unlock_irqrestore(&pdc_lock, flags);
629
630 return retval;
631}
632#endif
633
634
635
636
637
638
639
640
641int pdc_lan_station_id(char *lan_addr, unsigned long hpa)
642{
643 int retval;
644 unsigned long flags;
645
646 spin_lock_irqsave(&pdc_lock, flags);
647 retval = mem_pdc_call(PDC_LAN_STATION_ID, PDC_LAN_STATION_ID_READ,
648 __pa(pdc_result), hpa);
649 if (retval < 0) {
650
651 memset(lan_addr, 0, PDC_LAN_STATION_ID_SIZE);
652 } else {
653 memcpy(lan_addr, pdc_result, PDC_LAN_STATION_ID_SIZE);
654 }
655 spin_unlock_irqrestore(&pdc_lock, flags);
656
657 return retval;
658}
659EXPORT_SYMBOL(pdc_lan_station_id);
660
661
662
663
664
665
666
667
668
669
670
671int pdc_stable_read(unsigned long staddr, void *memaddr, unsigned long count)
672{
673 int retval;
674 unsigned long flags;
675
676 spin_lock_irqsave(&pdc_lock, flags);
677 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_READ, staddr,
678 __pa(pdc_result), count);
679 convert_to_wide(pdc_result);
680 memcpy(memaddr, pdc_result, count);
681 spin_unlock_irqrestore(&pdc_lock, flags);
682
683 return retval;
684}
685EXPORT_SYMBOL(pdc_stable_read);
686
687
688
689
690
691
692
693
694
695
696
697int pdc_stable_write(unsigned long staddr, void *memaddr, unsigned long count)
698{
699 int retval;
700 unsigned long flags;
701
702 spin_lock_irqsave(&pdc_lock, flags);
703 memcpy(pdc_result, memaddr, count);
704 convert_to_wide(pdc_result);
705 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_WRITE, staddr,
706 __pa(pdc_result), count);
707 spin_unlock_irqrestore(&pdc_lock, flags);
708
709 return retval;
710}
711EXPORT_SYMBOL(pdc_stable_write);
712
713
714
715
716
717
718
719
720
721
722int pdc_stable_get_size(unsigned long *size)
723{
724 int retval;
725 unsigned long flags;
726
727 spin_lock_irqsave(&pdc_lock, flags);
728 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_RETURN_SIZE, __pa(pdc_result));
729 *size = pdc_result[0];
730 spin_unlock_irqrestore(&pdc_lock, flags);
731
732 return retval;
733}
734EXPORT_SYMBOL(pdc_stable_get_size);
735
736
737
738
739
740
741
742int pdc_stable_verify_contents(void)
743{
744 int retval;
745 unsigned long flags;
746
747 spin_lock_irqsave(&pdc_lock, flags);
748 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_VERIFY_CONTENTS);
749 spin_unlock_irqrestore(&pdc_lock, flags);
750
751 return retval;
752}
753EXPORT_SYMBOL(pdc_stable_verify_contents);
754
755
756
757
758
759
760
761int pdc_stable_initialize(void)
762{
763 int retval;
764 unsigned long flags;
765
766 spin_lock_irqsave(&pdc_lock, flags);
767 retval = mem_pdc_call(PDC_STABLE, PDC_STABLE_INITIALIZE);
768 spin_unlock_irqrestore(&pdc_lock, flags);
769
770 return retval;
771}
772EXPORT_SYMBOL(pdc_stable_initialize);
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788int pdc_get_initiator(struct hardware_path *hwpath, struct pdc_initiator *initiator)
789{
790 int retval;
791 unsigned long flags;
792
793 spin_lock_irqsave(&pdc_lock, flags);
794
795
796#define IS_SPROCKETS() (strlen(boot_cpu_data.pdc.sys_model_name) == 14 && \
797 strncmp(boot_cpu_data.pdc.sys_model_name, "9000/785", 8) == 0)
798
799 retval = mem_pdc_call(PDC_INITIATOR, PDC_GET_INITIATOR,
800 __pa(pdc_result), __pa(hwpath));
801 if (retval < PDC_OK)
802 goto out;
803
804 if (pdc_result[0] < 16) {
805 initiator->host_id = pdc_result[0];
806 } else {
807 initiator->host_id = -1;
808 }
809
810
811
812
813
814 switch (pdc_result[1]) {
815 case 1: initiator->factor = 50; break;
816 case 2: initiator->factor = 25; break;
817 case 5: initiator->factor = 12; break;
818 case 25: initiator->factor = 10; break;
819 case 20: initiator->factor = 12; break;
820 case 40: initiator->factor = 10; break;
821 default: initiator->factor = -1; break;
822 }
823
824 if (IS_SPROCKETS()) {
825 initiator->width = pdc_result[4];
826 initiator->mode = pdc_result[5];
827 } else {
828 initiator->width = -1;
829 initiator->mode = -1;
830 }
831
832 out:
833 spin_unlock_irqrestore(&pdc_lock, flags);
834
835 return (retval >= PDC_OK);
836}
837EXPORT_SYMBOL(pdc_get_initiator);
838
839
840
841
842
843
844
845
846
847
848
849int pdc_pci_irt_size(unsigned long *num_entries, unsigned long hpa)
850{
851 int retval;
852 unsigned long flags;
853
854 spin_lock_irqsave(&pdc_lock, flags);
855 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_GET_INT_TBL_SIZE,
856 __pa(pdc_result), hpa);
857 convert_to_wide(pdc_result);
858 *num_entries = pdc_result[0];
859 spin_unlock_irqrestore(&pdc_lock, flags);
860
861 return retval;
862}
863
864
865
866
867
868
869
870
871
872
873int pdc_pci_irt(unsigned long num_entries, unsigned long hpa, void *tbl)
874{
875 int retval;
876 unsigned long flags;
877
878 BUG_ON((unsigned long)tbl & 0x7);
879
880 spin_lock_irqsave(&pdc_lock, flags);
881 pdc_result[0] = num_entries;
882 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_GET_INT_TBL,
883 __pa(pdc_result), hpa, __pa(tbl));
884 spin_unlock_irqrestore(&pdc_lock, flags);
885
886 return retval;
887}
888
889
890#if 0
891
892
893
894
895
896
897
898
899unsigned int pdc_pci_config_read(void *hpa, unsigned long cfg_addr)
900{
901 int retval;
902 unsigned long flags;
903
904 spin_lock_irqsave(&pdc_lock, flags);
905 pdc_result[0] = 0;
906 pdc_result[1] = 0;
907 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_READ_CONFIG,
908 __pa(pdc_result), hpa, cfg_addr&~3UL, 4UL);
909 spin_unlock_irqrestore(&pdc_lock, flags);
910
911 return retval ? ~0 : (unsigned int) pdc_result[0];
912}
913
914
915
916
917
918
919
920
921
922
923void pdc_pci_config_write(void *hpa, unsigned long cfg_addr, unsigned int val)
924{
925 int retval;
926 unsigned long flags;
927
928 spin_lock_irqsave(&pdc_lock, flags);
929 pdc_result[0] = 0;
930 retval = mem_pdc_call(PDC_PCI_INDEX, PDC_PCI_WRITE_CONFIG,
931 __pa(pdc_result), hpa,
932 cfg_addr&~3UL, 4UL, (unsigned long) val);
933 spin_unlock_irqrestore(&pdc_lock, flags);
934
935 return retval;
936}
937#endif
938
939
940
941
942
943
944
945int pdc_tod_read(struct pdc_tod *tod)
946{
947 int retval;
948 unsigned long flags;
949
950 spin_lock_irqsave(&pdc_lock, flags);
951 retval = mem_pdc_call(PDC_TOD, PDC_TOD_READ, __pa(pdc_result), 0);
952 convert_to_wide(pdc_result);
953 memcpy(tod, pdc_result, sizeof(*tod));
954 spin_unlock_irqrestore(&pdc_lock, flags);
955
956 return retval;
957}
958EXPORT_SYMBOL(pdc_tod_read);
959
960
961
962
963
964
965
966
967int pdc_tod_set(unsigned long sec, unsigned long usec)
968{
969 int retval;
970 unsigned long flags;
971
972 spin_lock_irqsave(&pdc_lock, flags);
973 retval = mem_pdc_call(PDC_TOD, PDC_TOD_WRITE, sec, usec);
974 spin_unlock_irqrestore(&pdc_lock, flags);
975
976 return retval;
977}
978EXPORT_SYMBOL(pdc_tod_set);
979
980#ifdef CONFIG_64BIT
981int pdc_mem_mem_table(struct pdc_memory_table_raddr *r_addr,
982 struct pdc_memory_table *tbl, unsigned long entries)
983{
984 int retval;
985 unsigned long flags;
986
987 spin_lock_irqsave(&pdc_lock, flags);
988 retval = mem_pdc_call(PDC_MEM, PDC_MEM_TABLE, __pa(pdc_result), __pa(pdc_result2), entries);
989 convert_to_wide(pdc_result);
990 memcpy(r_addr, pdc_result, sizeof(*r_addr));
991 memcpy(tbl, pdc_result2, entries * sizeof(*tbl));
992 spin_unlock_irqrestore(&pdc_lock, flags);
993
994 return retval;
995}
996#endif
997
998
999
1000
1001
1002int pdc_do_firm_test_reset(unsigned long ftc_bitmap)
1003{
1004 int retval;
1005 unsigned long flags;
1006
1007 spin_lock_irqsave(&pdc_lock, flags);
1008 retval = mem_pdc_call(PDC_BROADCAST_RESET, PDC_DO_FIRM_TEST_RESET,
1009 PDC_FIRM_TEST_MAGIC, ftc_bitmap);
1010 spin_unlock_irqrestore(&pdc_lock, flags);
1011
1012 return retval;
1013}
1014
1015
1016
1017
1018
1019
1020int pdc_do_reset(void)
1021{
1022 int retval;
1023 unsigned long flags;
1024
1025 spin_lock_irqsave(&pdc_lock, flags);
1026 retval = mem_pdc_call(PDC_BROADCAST_RESET, PDC_DO_RESET);
1027 spin_unlock_irqrestore(&pdc_lock, flags);
1028
1029 return retval;
1030}
1031
1032
1033
1034
1035
1036
1037
1038int __init pdc_soft_power_info(unsigned long *power_reg)
1039{
1040 int retval;
1041 unsigned long flags;
1042
1043 *power_reg = (unsigned long) (-1);
1044
1045 spin_lock_irqsave(&pdc_lock, flags);
1046 retval = mem_pdc_call(PDC_SOFT_POWER, PDC_SOFT_POWER_INFO, __pa(pdc_result), 0);
1047 if (retval == PDC_OK) {
1048 convert_to_wide(pdc_result);
1049 *power_reg = f_extend(pdc_result[0]);
1050 }
1051 spin_unlock_irqrestore(&pdc_lock, flags);
1052
1053 return retval;
1054}
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067int pdc_soft_power_button(int sw_control)
1068{
1069 int retval;
1070 unsigned long flags;
1071
1072 spin_lock_irqsave(&pdc_lock, flags);
1073 retval = mem_pdc_call(PDC_SOFT_POWER, PDC_SOFT_POWER_ENABLE, __pa(pdc_result), sw_control);
1074 spin_unlock_irqrestore(&pdc_lock, flags);
1075
1076 return retval;
1077}
1078
1079
1080
1081
1082
1083
1084void pdc_io_reset(void)
1085{
1086 unsigned long flags;
1087
1088 spin_lock_irqsave(&pdc_lock, flags);
1089 mem_pdc_call(PDC_IO, PDC_IO_RESET, 0);
1090 spin_unlock_irqrestore(&pdc_lock, flags);
1091}
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102void pdc_io_reset_devices(void)
1103{
1104 unsigned long flags;
1105
1106 spin_lock_irqsave(&pdc_lock, flags);
1107 mem_pdc_call(PDC_IO, PDC_IO_RESET_DEVICES, 0);
1108 spin_unlock_irqrestore(&pdc_lock, flags);
1109}
1110
1111
1112static int __attribute__((aligned(8))) iodc_retbuf[32];
1113static char __attribute__((aligned(64))) iodc_dbuf[4096];
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125int pdc_iodc_print(const unsigned char *str, unsigned count)
1126{
1127 unsigned int i;
1128 unsigned long flags;
1129
1130 for (i = 0; i < count;) {
1131 switch(str[i]) {
1132 case '\n':
1133 iodc_dbuf[i+0] = '\r';
1134 iodc_dbuf[i+1] = '\n';
1135 i += 2;
1136 goto print;
1137 default:
1138 iodc_dbuf[i] = str[i];
1139 i++;
1140 break;
1141 }
1142 }
1143
1144print:
1145 spin_lock_irqsave(&pdc_lock, flags);
1146 real32_call(PAGE0->mem_cons.iodc_io,
1147 (unsigned long)PAGE0->mem_cons.hpa, ENTRY_IO_COUT,
1148 PAGE0->mem_cons.spa, __pa(PAGE0->mem_cons.dp.layers),
1149 __pa(iodc_retbuf), 0, __pa(iodc_dbuf), i, 0);
1150 spin_unlock_irqrestore(&pdc_lock, flags);
1151
1152 return i;
1153}
1154
1155
1156
1157
1158
1159
1160
1161int pdc_iodc_getc(void)
1162{
1163 int ch;
1164 int status;
1165 unsigned long flags;
1166
1167
1168 if (!PAGE0->mem_kbd.iodc_io)
1169 return 0;
1170
1171
1172 spin_lock_irqsave(&pdc_lock, flags);
1173 real32_call(PAGE0->mem_kbd.iodc_io,
1174 (unsigned long)PAGE0->mem_kbd.hpa, ENTRY_IO_CIN,
1175 PAGE0->mem_kbd.spa, __pa(PAGE0->mem_kbd.dp.layers),
1176 __pa(iodc_retbuf), 0, __pa(iodc_dbuf), 1, 0);
1177
1178 ch = *iodc_dbuf;
1179 status = *iodc_retbuf;
1180 spin_unlock_irqrestore(&pdc_lock, flags);
1181
1182 if (status == 0)
1183 return -1;
1184
1185 return ch;
1186}
1187
1188int pdc_sti_call(unsigned long func, unsigned long flags,
1189 unsigned long inptr, unsigned long outputr,
1190 unsigned long glob_cfg)
1191{
1192 int retval;
1193 unsigned long irqflags;
1194
1195 spin_lock_irqsave(&pdc_lock, irqflags);
1196 retval = real32_call(func, flags, inptr, outputr, glob_cfg);
1197 spin_unlock_irqrestore(&pdc_lock, irqflags);
1198
1199 return retval;
1200}
1201EXPORT_SYMBOL(pdc_sti_call);
1202
1203#ifdef CONFIG_64BIT
1204
1205
1206
1207
1208
1209
1210
1211int pdc_pat_cell_get_number(struct pdc_pat_cell_num *cell_info)
1212{
1213 int retval;
1214 unsigned long flags;
1215
1216 spin_lock_irqsave(&pdc_lock, flags);
1217 retval = mem_pdc_call(PDC_PAT_CELL, PDC_PAT_CELL_GET_NUMBER, __pa(pdc_result));
1218 memcpy(cell_info, pdc_result, sizeof(*cell_info));
1219 spin_unlock_irqrestore(&pdc_lock, flags);
1220
1221 return retval;
1222}
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235int pdc_pat_cell_module(unsigned long *actcnt, unsigned long ploc, unsigned long mod,
1236 unsigned long view_type, void *mem_addr)
1237{
1238 int retval;
1239 unsigned long flags;
1240 static struct pdc_pat_cell_mod_maddr_block result __attribute__ ((aligned (8)));
1241
1242 spin_lock_irqsave(&pdc_lock, flags);
1243 retval = mem_pdc_call(PDC_PAT_CELL, PDC_PAT_CELL_MODULE, __pa(pdc_result),
1244 ploc, mod, view_type, __pa(&result));
1245 if(!retval) {
1246 *actcnt = pdc_result[0];
1247 memcpy(mem_addr, &result, *actcnt);
1248 }
1249 spin_unlock_irqrestore(&pdc_lock, flags);
1250
1251 return retval;
1252}
1253
1254
1255
1256
1257
1258
1259
1260
1261int pdc_pat_cpu_get_number(struct pdc_pat_cpu_num *cpu_info, void *hpa)
1262{
1263 int retval;
1264 unsigned long flags;
1265
1266 spin_lock_irqsave(&pdc_lock, flags);
1267 retval = mem_pdc_call(PDC_PAT_CPU, PDC_PAT_CPU_GET_NUMBER,
1268 __pa(&pdc_result), hpa);
1269 memcpy(cpu_info, pdc_result, sizeof(*cpu_info));
1270 spin_unlock_irqrestore(&pdc_lock, flags);
1271
1272 return retval;
1273}
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283int pdc_pat_get_irt_size(unsigned long *num_entries, unsigned long cell_num)
1284{
1285 int retval;
1286 unsigned long flags;
1287
1288 spin_lock_irqsave(&pdc_lock, flags);
1289 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_GET_PCI_ROUTING_TABLE_SIZE,
1290 __pa(pdc_result), cell_num);
1291 *num_entries = pdc_result[0];
1292 spin_unlock_irqrestore(&pdc_lock, flags);
1293
1294 return retval;
1295}
1296
1297
1298
1299
1300
1301
1302
1303
1304int pdc_pat_get_irt(void *r_addr, unsigned long cell_num)
1305{
1306 int retval;
1307 unsigned long flags;
1308
1309 spin_lock_irqsave(&pdc_lock, flags);
1310 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_GET_PCI_ROUTING_TABLE,
1311 __pa(r_addr), cell_num);
1312 spin_unlock_irqrestore(&pdc_lock, flags);
1313
1314 return retval;
1315}
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325int pdc_pat_pd_get_addr_map(unsigned long *actual_len, void *mem_addr,
1326 unsigned long count, unsigned long offset)
1327{
1328 int retval;
1329 unsigned long flags;
1330
1331 spin_lock_irqsave(&pdc_lock, flags);
1332 retval = mem_pdc_call(PDC_PAT_PD, PDC_PAT_PD_GET_ADDR_MAP, __pa(pdc_result),
1333 __pa(pdc_result2), count, offset);
1334 *actual_len = pdc_result[0];
1335 memcpy(mem_addr, pdc_result2, *actual_len);
1336 spin_unlock_irqrestore(&pdc_lock, flags);
1337
1338 return retval;
1339}
1340
1341
1342
1343
1344
1345
1346
1347
1348int pdc_pat_io_pci_cfg_read(unsigned long pci_addr, int pci_size, u32 *mem_addr)
1349{
1350 int retval;
1351 unsigned long flags;
1352
1353 spin_lock_irqsave(&pdc_lock, flags);
1354 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_PCI_CONFIG_READ,
1355 __pa(pdc_result), pci_addr, pci_size);
1356 switch(pci_size) {
1357 case 1: *(u8 *) mem_addr = (u8) pdc_result[0];
1358 case 2: *(u16 *)mem_addr = (u16) pdc_result[0];
1359 case 4: *(u32 *)mem_addr = (u32) pdc_result[0];
1360 }
1361 spin_unlock_irqrestore(&pdc_lock, flags);
1362
1363 return retval;
1364}
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374int pdc_pat_io_pci_cfg_write(unsigned long pci_addr, int pci_size, u32 val)
1375{
1376 int retval;
1377 unsigned long flags;
1378
1379 spin_lock_irqsave(&pdc_lock, flags);
1380 retval = mem_pdc_call(PDC_PAT_IO, PDC_PAT_IO_PCI_CONFIG_WRITE,
1381 pci_addr, pci_size, val);
1382 spin_unlock_irqrestore(&pdc_lock, flags);
1383
1384 return retval;
1385}
1386#endif
1387
1388
1389
1390
1391
1392
1393
1394
1395struct narrow_stack {
1396
1397 unsigned int arg13;
1398 unsigned int arg12;
1399 unsigned int arg11;
1400 unsigned int arg10;
1401 unsigned int arg9;
1402 unsigned int arg8;
1403 unsigned int arg7;
1404 unsigned int arg6;
1405 unsigned int arg5;
1406 unsigned int arg4;
1407 unsigned int arg3;
1408 unsigned int arg2;
1409 unsigned int arg1;
1410 unsigned int arg0;
1411 unsigned int frame_marker[8];
1412 unsigned int sp;
1413
1414};
1415
1416long real32_call(unsigned long fn, ...)
1417{
1418 va_list args;
1419 extern struct narrow_stack real_stack;
1420 extern unsigned long real32_call_asm(unsigned int *,
1421 unsigned int *,
1422 unsigned int);
1423
1424 va_start(args, fn);
1425 real_stack.arg0 = va_arg(args, unsigned int);
1426 real_stack.arg1 = va_arg(args, unsigned int);
1427 real_stack.arg2 = va_arg(args, unsigned int);
1428 real_stack.arg3 = va_arg(args, unsigned int);
1429 real_stack.arg4 = va_arg(args, unsigned int);
1430 real_stack.arg5 = va_arg(args, unsigned int);
1431 real_stack.arg6 = va_arg(args, unsigned int);
1432 real_stack.arg7 = va_arg(args, unsigned int);
1433 real_stack.arg8 = va_arg(args, unsigned int);
1434 real_stack.arg9 = va_arg(args, unsigned int);
1435 real_stack.arg10 = va_arg(args, unsigned int);
1436 real_stack.arg11 = va_arg(args, unsigned int);
1437 real_stack.arg12 = va_arg(args, unsigned int);
1438 real_stack.arg13 = va_arg(args, unsigned int);
1439 va_end(args);
1440
1441 return real32_call_asm(&real_stack.sp, &real_stack.arg0, fn);
1442}
1443
1444#ifdef CONFIG_64BIT
1445
1446
1447struct wide_stack {
1448 unsigned long arg0;
1449 unsigned long arg1;
1450 unsigned long arg2;
1451 unsigned long arg3;
1452 unsigned long arg4;
1453 unsigned long arg5;
1454 unsigned long arg6;
1455 unsigned long arg7;
1456 unsigned long arg8;
1457 unsigned long arg9;
1458 unsigned long arg10;
1459 unsigned long arg11;
1460 unsigned long arg12;
1461 unsigned long arg13;
1462 unsigned long frame_marker[2];
1463 unsigned long sp;
1464
1465};
1466
1467long real64_call(unsigned long fn, ...)
1468{
1469 va_list args;
1470 extern struct wide_stack real64_stack;
1471 extern unsigned long real64_call_asm(unsigned long *,
1472 unsigned long *,
1473 unsigned long);
1474
1475 va_start(args, fn);
1476 real64_stack.arg0 = va_arg(args, unsigned long);
1477 real64_stack.arg1 = va_arg(args, unsigned long);
1478 real64_stack.arg2 = va_arg(args, unsigned long);
1479 real64_stack.arg3 = va_arg(args, unsigned long);
1480 real64_stack.arg4 = va_arg(args, unsigned long);
1481 real64_stack.arg5 = va_arg(args, unsigned long);
1482 real64_stack.arg6 = va_arg(args, unsigned long);
1483 real64_stack.arg7 = va_arg(args, unsigned long);
1484 real64_stack.arg8 = va_arg(args, unsigned long);
1485 real64_stack.arg9 = va_arg(args, unsigned long);
1486 real64_stack.arg10 = va_arg(args, unsigned long);
1487 real64_stack.arg11 = va_arg(args, unsigned long);
1488 real64_stack.arg12 = va_arg(args, unsigned long);
1489 real64_stack.arg13 = va_arg(args, unsigned long);
1490 va_end(args);
1491
1492 return real64_call_asm(&real64_stack.sp, &real64_stack.arg0, fn);
1493}
1494
1495#endif
1496
1497