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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
|
/* $Id: entry.S,v 1.55 2000/03/05 01:48:58 gniibe Exp $
*
* linux/arch/sh/entry.S
*
* Copyright (C) 1999, 2000 Niibe Yutaka
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
*/
#include <linux/sys.h>
#include <linux/linkage.h>
#include <linux/config.h>
! NOTE:
! GNU as (as of 2.9.1) changes bf/s into bt/s and bra, when the address
! to be jumped is too far, but it causes illegal slot exception.
/*
* entry.S contains the system-call and fault low-level handling routines.
* This also contains the timer-interrupt handler, as well as all interrupts
* and faults that can result in a task-switch.
*
* NOTE: This code handles signal-recognition, which happens every time
* after a timer-interrupt and after each system call.
*
* Stack layout in 'ret_from_syscall':
* ptrace needs to have all regs on the stack.
* if the order here is changed, it needs to be
* updated in ptrace.c and ptrace.h
*
* syscall #
* ssr
* r15 = stack pointer
* r0
* ...
* r14
* gbr
* mach
* macl
* pr
* spc
*
*/
/*
* these are offsets into the task-struct.
*/
state = 0
flags = 4
sigpending = 8
addr_limit = 12
need_resched = 20
PF_TRACESYS = 0x00000020
PF_USEDFPU = 0x00100000
ENOSYS = 38
#if defined(__sh3__)
TRA = 0xffffffd0
EXPEVT = 0xffffffd4
#ifdef CONFIG_CPU_SUBTYPE_SH7709
INTEVT = 0xa4000000 ! INTEVTE2(0xa4000000)
#else
INTEVT = 0xffffffd8
#endif
MMU_TEA = 0xfffffffc ! TLB Exception Address Register
#elif defined(__SH4__)
TRA = 0xff000020
EXPEVT = 0xff000024
INTEVT = 0xff000028
MMU_TEA = 0xff00000c ! TLB Exception Address Register
#endif
/* Offsets to the stack */
SYSCALL_NR = 0
SR = 4
SP = 8
R0 = 12
#define k0 r0
#define k1 r1
#define k2 r2
#define k3 r3
#define kernel_sp r4 /* r4_bank1 */
#define ksp r4_bank /* r4_bank1 */
#define k_ex_code r2_bank /* r2_bank1 */
/* Kernel mode register usage:
k0 scratch
k1 scratch
k2 scratch (Exception code)
k3 scratch (Return address)
k4 Stack base = current+8192
k5 reserved
k6 reserved
k7 reserved
*/
!
! TLB Miss / Initial Page write exception handling
! _and_
! TLB hits, but the access violate the protection.
! It can be valid access, such as stack grow and/or C-O-W.
!
!
! Find the pmd/pte entry and loadtlb
! If it's not found, cause address error (SEGV)
!
! Although this could be written in assembly language (and it'd be faster),
! this first version depends *much* on C implementation.
!
#define DO_FAULT(write) \
mov.l 4f,r0; \
mov.l @r0,r6; \
/* STI */ \
mov.l 3f,r1; \
stc sr,r0; \
and r1,r0; \
ldc r0,sr; \
/* */ \
mov r15,r4; \
mov.l 2f,r0; \
jmp @r0; \
mov #write,r5;
.balign 4
tlb_protection_violation_load:
tlb_miss_load:
mov #-1,r0
mov.l r0,@r15 ! syscall nr = -1
DO_FAULT(0)
.balign 4
tlb_protection_violation_store:
tlb_miss_store:
initial_page_write:
mov #-1,r0
mov.l r0,@r15 ! syscall nr = -1
DO_FAULT(1)
.balign 4
2: .long SYMBOL_NAME(do_page_fault)
3: .long 0xefffffff ! BL=0
4: .long MMU_TEA
#ifdef CONFIG_DEBUG_KERNEL_WITH_GDB_STUB
.balign 4
/* Unwind the stack and jmp to the debug entry */
debug:
add #4,r15 ! skip syscall number
mov.l @r15+,r11 ! SSR
mov.l @r15+,r10 ! original stack
mov.l @r15+,r0
mov.l @r15+,r1
mov.l @r15+,r2
mov.l @r15+,r3
mov.l @r15+,r4
mov.l @r15+,r5
mov.l @r15+,r6
mov.l @r15+,r7
stc sr,r14
mov.l 8f,r9 ! BL =1, RB=1
or r9,r14
ldc r14,sr ! here, change the register bank
mov r10,k0
mov r11,k1
mov.l @r15+,r8
mov.l @r15+,r9
mov.l @r15+,r10
mov.l @r15+,r11
mov.l @r15+,r12
mov.l @r15+,r13
mov.l @r15+,r14
ldc.l @r15+,gbr
lds.l @r15+,mach
lds.l @r15+,macl
lds.l @r15+,pr
ldc.l @r15+,spc
mov k0,r15
!
mov.l 9f,k0
jmp @k0
ldc k1,ssr
.balign 4
8: .long 0x300000f0
9: .long 0xa0000100
#endif
.balign 4
error:
! STI
mov.l 2f,r1
stc sr,r0
and r1,r0
ldc r0,sr
!
mov.l 1f,r1
mov #-1,r0
jmp @r1
mov.l r0,@r15 ! syscall nr = -1
.balign 4
1: .long SYMBOL_NAME(do_exception_error)
2: .long 0xefffffff ! BL=0
badsys: mov #-ENOSYS,r0
rts ! go to ret_from_syscall..
mov.l r0,@(R0,r15)
!
!
!
ENTRY(ret_from_fork)
bra SYMBOL_NAME(ret_from_syscall)
add #4,r15 ! pop down bogus r0 (see switch_to MACRO)
!
! The immediate value of "trapa" indicates the number of arguments
! placed on the stack.
!
! Note that TRA register contains the value = Imm x 4.
!
system_call:
mov.l 1f,r2
mov.l @r2,r8
!
! DEBUG DEBUG
! mov.l led,r1
! mov r0,r2
! mov.b r2,@r1
!
#ifdef CONFIG_DEBUG_KERNEL_WITH_GDB_STUB
mov #0x20,r1
extu.b r1,r1
shll2 r1
cmp/hs r1,r8
bt debug
#endif
! STI
mov.l 2f,r1
stc sr,r2
and r1,r2
ldc r2,sr
!
mov.l __n_sys,r1
cmp/hs r1,r0
bt/s badsys
mov r0,r2
!
stc ksp,r1 !
mov.l __tsk_flags,r0 !
add r0,r1 !
mov.l @r1,r0 ! Is it trace?
tst #PF_TRACESYS,r0
bt 5f
! Trace system call
mov #-ENOSYS,r1
mov.l r1,@(R0,r15)
mov.l 3f,r1
jsr @r1
nop
mova 4f,r0
bra 6f
lds r0,pr
!
5: mova ret,r0 ! normal case
lds r0,pr
! Build the stack frame if TRA > 0
!
6: mov r2,r3
mov r8,r2
cmp/pl r8
bf 9f
mov.l @(SP,r15),r0 ! get original stack
7: add #-4,r8
8: mov.l @(r0,r8),r1 ! May cause address error exception..
mov.l r1,@-r15
cmp/pl r8
bt 7b
!
9: mov r3,r0
shll2 r0 ! x4
mov.l __sct,r1
add r1,r0
mov.l @r0,r1
jmp @r1
mov r2,r8
! In case of trace
.balign 4
4: add r8,r15 ! pop off the arguments
mov.l r0,@(R0,r15) ! save the return value
mov.l 3f,r1
mova SYMBOL_NAME(ret_from_syscall),r0
jmp @r1
lds r0,pr
.balign 4
3: .long SYMBOL_NAME(syscall_trace)
2: .long 0xefffffff ! BL=0
1: .long TRA
__n_sys: .long NR_syscalls
__sct: .long SYMBOL_NAME(sys_call_table)
__tsk_flags: .long flags-8192 ! offset from stackbase to tsk->flags
led: .long 0xa8000000 ! For my board -- gN
.section .fixup,"ax"
fixup_syscall_argerr:
rts
mov.l 1f,r0
1: .long -22 ! -EINVAL
.previous
.section __ex_table, "a"
.balign 4
.long 8b,fixup_syscall_argerr
.previous
reschedule:
mova SYMBOL_NAME(ret_from_syscall),r0
mov.l 1f,r1
jmp @r1
lds r0,pr
.balign 4
1: .long SYMBOL_NAME(schedule)
ENTRY(ret_from_irq)
mov.l @(SR,r15),r0 ! get status register
shll r0
shll r0 ! kernel space?
bt restore_all ! Yes, it's from kernel, go back soon
! STI
mov.l 1f, $r1
stc $sr, $r2
and $r1, $r2
ldc $r2, $sr
!
bra ret_with_reschedule
nop
ENTRY(ret_from_exception)
mov.l @(SR,r15),r0 ! get status register
shll r0
shll r0 ! kernel space?
bt restore_all ! Yes, it's from kernel, go back soon
! STI
mov.l 1f, $r1
stc $sr, $r2
and $r1, $r2
ldc $r2, $sr
!
bra ret_from_syscall
nop
.balign 4
1: .long 0xefffffff ! BL=0
.balign 4
ret: add r8,r15 ! pop off the arguments
mov.l r0,@(R0,r15) ! save the return value
/* fall through */
ENTRY(ret_from_syscall)
mov.l __softirq_state,r0
mov.l @r0,r1
mov.l @(4,r0),r2
tst r2,r1
bt ret_with_reschedule
handle_softirq:
mov.l __do_softirq,r0
jsr @r0
nop
ret_with_reschedule:
stc ksp,r1
mov.l __minus8192,r0
add r0,r1
mov.l @(need_resched,r1),r0
tst #0xff,r0
bf reschedule
mov.l @(sigpending,r1),r0
tst #0xff,r0
bt restore_all
signal_return:
mov r15,r4
mov #0,r5
mov.l __do_signal,r1
mova restore_all,r0
jmp @r1
lds r0,pr
.balign 4
__do_signal:
.long SYMBOL_NAME(do_signal)
__softirq_state:
.long SYMBOL_NAME(softirq_state)
__do_softirq:
.long SYMBOL_NAME(do_softirq)
__minus8192:
.long -8192 ! offset from stackbase to tsk
.balign 4
restore_all:
#if defined(__SH4__)
mov.l __fpu_prepare_fd, $r1
jsr @$r1
stc $sr, $r4
#endif
add #4,r15 ! Skip syscall number
mov.l @r15+,r11 ! Got SSR into R11
#if defined(__SH4__)
mov $r11, $r12
#endif
!
mov.l 1f,r1
stc sr,r0
and r1,r0 ! Get IMASK+FD
mov.l 2f,r1
and r1,r11
or r0,r11 ! Inherit the IMASK+FD value of SR
!
mov.l @r15+,r10 ! original stack
mov.l @r15+,r0
mov.l @r15+,r1
mov.l @r15+,r2
mov.l @r15+,r3
mov.l @r15+,r4
mov.l @r15+,r5
mov.l @r15+,r6
mov.l @r15+,r7
stc sr,r14
mov.l __blrb_flags,r9 ! BL =1, RB=1
or r9,r14
ldc r14,sr ! here, change the register bank
mov r10,k0
mov r11,k1
#if defined(__SH4__)
mov $r12, $k2
#endif
mov.l @r15+,r8
mov.l @r15+,r9
mov.l @r15+,r10
mov.l @r15+,r11
mov.l @r15+,r12
mov.l @r15+,r13
mov.l @r15+,r14
ldc.l @r15+,gbr
lds.l @r15+,mach
lds.l @r15+,macl
lds.l @r15+,pr
ldc.l @r15+,spc
ldc k1,ssr
#if defined(__SH4__)
shll $k1
shll $k1
bf 9f ! user mode
/* Kernel to kernel transition */
mov.l 3f, $k1
tst $k1, $k2
bf 9f ! it hadn't FPU
! Kernel to kernel and FPU was used
! There's the case we don't get FPU now
stc $sr, $k2
tst $k1, $k2
bt 7f
! We need to grab FPU here
xor $k1, $k2
ldc $k2, $sr ! Grab FPU
mov.l __init_task_flags, $k1
mov.l @$k1, $k2
mov.l __PF_USEDFPU, $k1
or $k1, $k2
mov.l __init_task_flags, $k1
mov.l $k2, @$k1 ! Set init_task.flags |= PF_USEDFPU
!
! Restoring FPU...
!
7: fmov.s @$r15+, $fr0
fmov.s @$r15+, $fr1
fmov.s @$r15+, $fr2
fmov.s @$r15+, $fr3
fmov.s @$r15+, $fr4
fmov.s @$r15+, $fr5
fmov.s @$r15+, $fr6
fmov.s @$r15+, $fr7
fmov.s @$r15+, $fr8
fmov.s @$r15+, $fr9
fmov.s @$r15+, $fr10
fmov.s @$r15+, $fr11
fmov.s @$r15+, $fr12
fmov.s @$r15+, $fr13
fmov.s @$r15+, $fr14
fmov.s @$r15+, $fr15
lds.l @$r15+, $fpscr
lds.l @$r15+, $fpul
9:
#endif
mov k0,r15
rte
nop
.balign 4
__blrb_flags: .long 0x30000000
#if defined(__SH4__)
__fpu_prepare_fd:
.long SYMBOL_NAME(fpu_prepare_fd)
__init_task_flags:
.long SYMBOL_NAME(init_task_union)+4
__PF_USEDFPU:
.long PF_USEDFPU
#endif
1: .long 0x000080f0 ! IMASK+FD
2: .long 0xffff7f0f ! ~(IMASK+FD)
3: .long 0x00008000 ! FD=1
! Exception Vector Base
!
! Should be aligned page boundary.
!
.balign 4096,0,4096
ENTRY(vbr_base)
.long 0
!
.balign 256,0,256
general_exception:
mov.l 1f,k2
mov.l 2f,k3
bra handle_exception
mov.l @k2,k2
.balign 4
2: .long SYMBOL_NAME(ret_from_exception)
1: .long EXPEVT
!
!
.balign 1024,0,1024
tlb_miss:
mov.l 1f,k2
mov.l 4f,k3
bra handle_exception
mov.l @k2,k2
!
.balign 512,0,512
interrupt:
mov.l 2f,k2
mov.l 3f,k3
bra handle_exception
mov.l @k2,k2
.balign 4
1: .long EXPEVT
2: .long INTEVT
3: .long SYMBOL_NAME(ret_from_irq)
4: .long SYMBOL_NAME(ret_from_exception)
!
!
handle_exception:
! Using k0, k1 for scratch registers (r0_bank1, r1_bank),
! save all registers onto stack.
!
stc ssr,k0 ! from kernel space?
shll k0 ! Check MD bit (bit30)
shll k0
#if defined(__SH4__)
bf/s 8f ! it's from user to kernel transition
mov $r15, $k0 ! save original stack to k0
/* Kernel to kernel transition */
mov.l 2f, $k1
stc $ssr, $k0
tst $k1, $k0
bf/s 9f ! FPU is not used
mov $r15, $k0 ! save original stack to k0
! FPU is used, save FPU
! /* XXX: Need to save another bank of FPU if all FPU feature is used */
! /* Currently it's not the case for GCC (only udivsi3_i4, divsi3_i4) */
sts.l $fpul, @-$r15
sts.l $fpscr, @-$r15
fmov.s $fr15, @-$r15
fmov.s $fr14, @-$r15
fmov.s $fr13, @-$r15
fmov.s $fr12, @-$r15
fmov.s $fr11, @-$r15
fmov.s $fr10, @-$r15
fmov.s $fr9, @-$r15
fmov.s $fr8, @-$r15
fmov.s $fr7, @-$r15
fmov.s $fr6, @-$r15
fmov.s $fr5, @-$r15
fmov.s $fr4, @-$r15
fmov.s $fr3, @-$r15
fmov.s $fr2, @-$r15
fmov.s $fr1, @-$r15
fmov.s $fr0, @-$r15
bra 9f
mov #0, $k1
#else
bt/s 9f ! it's from kernel to kernel transition
mov r15,k0 ! save original stack to k0 anyway
#endif
8: /* User space to kernel */
mov kernel_sp, $r15 ! change to kernel stack
#if defined(__SH4__)
mov.l 2f, $k1 ! let kernel release FPU
#endif
9: stc.l spc,@-r15
sts.l pr,@-r15
!
lds k3,pr ! Set the return address to pr
!
sts.l macl,@-r15
sts.l mach,@-r15
stc.l gbr,@-r15
mov.l r14,@-r15
!
stc sr,r14 ! Back to normal register bank, and
#if defined(__SH4__)
or $k1, $r14 ! may release FPU
#endif
mov.l 3f,k1
and k1,r14 ! ...
ldc r14,sr ! ...changed here.
!
mov.l r13,@-r15
mov.l r12,@-r15
mov.l r11,@-r15
mov.l r10,@-r15
mov.l r9,@-r15
mov.l r8,@-r15
mov.l r7,@-r15
mov.l r6,@-r15
mov.l r5,@-r15
mov.l r4,@-r15
mov.l r3,@-r15
mov.l r2,@-r15
mov.l r1,@-r15
mov.l r0,@-r15
stc.l r0_bank,@-r15 ! save orignal stack
stc.l ssr,@-r15
mov.l r0,@-r15 ! push r0 again (for syscall number)
! Then, dispatch to the handler, according to the excepiton code.
stc k_ex_code,r1
shlr2 r1
shlr r1
mov.l 1f,r0
add r1,r0
mov.l @r0,r0
jmp @r0
mov.l @r15,r0 ! recovering r0..
.balign 4
1: .long SYMBOL_NAME(exception_handling_table)
2: .long 0x00008000 ! FD=1
3: .long 0xdfffffff ! RB=0, leave BL=1
none:
rts
nop
.data
ENTRY(exception_handling_table)
.long error
.long error
.long tlb_miss_load
.long tlb_miss_store
.long initial_page_write
.long tlb_protection_violation_load
.long tlb_protection_violation_store
.long error ! address_error_load (filled by trap_init)
.long error ! address_error_store (filled by trap_init)
#if defined(__SH4__)
.long SYMBOL_NAME(do_fpu_error)
#else
.long error ! fpu_exception
#endif
.long error
.long system_call ! Unconditional Trap
.long error ! reserved_instruction (filled by trap_init)
.long error ! illegal_slot_instruction (filled by trap_init)
ENTRY(nmi_slot)
.long none ! Not implemented yet
ENTRY(user_break_point_trap)
.long error ! Not implemented yet
ENTRY(interrupt_table)
! external hardware
.long SYMBOL_NAME(do_IRQ) ! 0000
.long SYMBOL_NAME(do_IRQ) ! 0001
.long SYMBOL_NAME(do_IRQ) ! 0010
.long SYMBOL_NAME(do_IRQ) ! 0011
.long SYMBOL_NAME(do_IRQ) ! 0100
.long SYMBOL_NAME(do_IRQ) ! 0101
.long SYMBOL_NAME(do_IRQ) ! 0110
.long SYMBOL_NAME(do_IRQ) ! 0111
.long SYMBOL_NAME(do_IRQ) ! 1000
.long SYMBOL_NAME(do_IRQ) ! 1001
.long SYMBOL_NAME(do_IRQ) ! 1010
.long SYMBOL_NAME(do_IRQ) ! 1011
.long SYMBOL_NAME(do_IRQ) ! 1100
.long SYMBOL_NAME(do_IRQ) ! 1101
.long SYMBOL_NAME(do_IRQ) ! 1110
.long error
! Internal hardware
.long SYMBOL_NAME(do_IRQ) ! TMU0 tuni0
.long SYMBOL_NAME(do_IRQ) ! TMU1 tuni1
.long SYMBOL_NAME(do_IRQ) ! TMU2 tuni2
.long SYMBOL_NAME(do_IRQ) ! ticpi2
.long SYMBOL_NAME(do_IRQ) ! RTC ati
.long SYMBOL_NAME(do_IRQ) ! pri
.long SYMBOL_NAME(do_IRQ) ! cui
.long SYMBOL_NAME(do_IRQ) ! SCI eri
.long SYMBOL_NAME(do_IRQ) ! rxi
.long SYMBOL_NAME(do_IRQ) ! txi
.long SYMBOL_NAME(do_IRQ) ! tei
.long SYMBOL_NAME(do_IRQ) ! WDT iti
.long SYMBOL_NAME(do_IRQ) ! REF rcmi
.long SYMBOL_NAME(do_IRQ) ! rovi
.long SYMBOL_NAME(do_IRQ)
.long SYMBOL_NAME(do_IRQ)
#if defined(CONFIG_CPU_SUBTYPE_SH7709)
.long SYMBOL_NAME(do_IRQ) ! 32 IRQ irq0
.long SYMBOL_NAME(do_IRQ) ! 33 irq1
.long SYMBOL_NAME(do_IRQ) ! 34 irq2
.long SYMBOL_NAME(do_IRQ) ! 35 irq3
.long SYMBOL_NAME(do_IRQ) ! 36 irq4
.long SYMBOL_NAME(do_IRQ) ! 37 irq5
.long SYMBOL_NAME(do_IRQ) ! 38
.long SYMBOL_NAME(do_IRQ) ! 39
.long SYMBOL_NAME(do_IRQ) ! 40 PINT pint0-7
.long SYMBOL_NAME(do_IRQ) ! 41 pint8-15
.long SYMBOL_NAME(do_IRQ) ! 42
.long SYMBOL_NAME(do_IRQ) ! 43
.long SYMBOL_NAME(do_IRQ) ! 44
.long SYMBOL_NAME(do_IRQ) ! 45
.long SYMBOL_NAME(do_IRQ) ! 46
.long SYMBOL_NAME(do_IRQ) ! 47
.long SYMBOL_NAME(do_IRQ) ! 48 DMAC dei0
.long SYMBOL_NAME(do_IRQ) ! 49 dei1
.long SYMBOL_NAME(do_IRQ) ! 50 dei2
.long SYMBOL_NAME(do_IRQ) ! 51 dei3
.long SYMBOL_NAME(do_IRQ) ! 52 IrDA eri1
.long SYMBOL_NAME(do_IRQ) ! 53 rxi1
.long SYMBOL_NAME(do_IRQ) ! 54 bri1
.long SYMBOL_NAME(do_IRQ) ! 55 txi1
.long SYMBOL_NAME(do_IRQ) ! 56 SCIF eri2
.long SYMBOL_NAME(do_IRQ) ! 57 rxi2
.long SYMBOL_NAME(do_IRQ) ! 58 bri2
.long SYMBOL_NAME(do_IRQ) ! 59 txi2
.long SYMBOL_NAME(do_IRQ) ! 60 ADC adi
#elif defined(__SH4__)
.long SYMBOL_NAME(do_IRQ) ! Hitachi UDI
.long SYMBOL_NAME(do_IRQ) ! GPIO
.long SYMBOL_NAME(do_IRQ) ! DMAC dmte0
.long SYMBOL_NAME(do_IRQ) ! dmte1
.long SYMBOL_NAME(do_IRQ) ! dmte2
.long SYMBOL_NAME(do_IRQ) ! dmte3
.long SYMBOL_NAME(do_IRQ) ! dmae
.long SYMBOL_NAME(do_IRQ)
.long SYMBOL_NAME(do_IRQ) ! SCIF eri
.long SYMBOL_NAME(do_IRQ) ! rxi
.long SYMBOL_NAME(do_IRQ) ! bri
.long SYMBOL_NAME(do_IRQ) ! txi
.long error
.long error
.long error
.long error
.long SYMBOL_NAME(do_fpu_state_restore)
.long SYMBOL_NAME(do_fpu_state_restore)
#endif
ENTRY(sys_call_table)
.long SYMBOL_NAME(sys_ni_syscall) /* 0 - old "setup()" system call*/
.long SYMBOL_NAME(sys_exit)
.long SYMBOL_NAME(sys_fork)
.long SYMBOL_NAME(sys_read)
.long SYMBOL_NAME(sys_write)
.long SYMBOL_NAME(sys_open) /* 5 */
.long SYMBOL_NAME(sys_close)
.long SYMBOL_NAME(sys_waitpid)
.long SYMBOL_NAME(sys_creat)
.long SYMBOL_NAME(sys_link)
.long SYMBOL_NAME(sys_unlink) /* 10 */
.long SYMBOL_NAME(sys_execve)
.long SYMBOL_NAME(sys_chdir)
.long SYMBOL_NAME(sys_time)
.long SYMBOL_NAME(sys_mknod)
.long SYMBOL_NAME(sys_chmod) /* 15 */
.long SYMBOL_NAME(sys_lchown16)
.long SYMBOL_NAME(sys_ni_syscall) /* old break syscall holder */
.long SYMBOL_NAME(sys_stat)
.long SYMBOL_NAME(sys_lseek)
.long SYMBOL_NAME(sys_getpid) /* 20 */
.long SYMBOL_NAME(sys_mount)
.long SYMBOL_NAME(sys_oldumount)
.long SYMBOL_NAME(sys_setuid16)
.long SYMBOL_NAME(sys_getuid16)
.long SYMBOL_NAME(sys_stime) /* 25 */
.long SYMBOL_NAME(sys_ptrace)
.long SYMBOL_NAME(sys_alarm)
.long SYMBOL_NAME(sys_fstat)
.long SYMBOL_NAME(sys_pause)
.long SYMBOL_NAME(sys_utime) /* 30 */
.long SYMBOL_NAME(sys_ni_syscall) /* old stty syscall holder */
.long SYMBOL_NAME(sys_ni_syscall) /* old gtty syscall holder */
.long SYMBOL_NAME(sys_access)
.long SYMBOL_NAME(sys_nice)
.long SYMBOL_NAME(sys_ni_syscall) /* 35 */ /* old ftime syscall holder */
.long SYMBOL_NAME(sys_sync)
.long SYMBOL_NAME(sys_kill)
.long SYMBOL_NAME(sys_rename)
.long SYMBOL_NAME(sys_mkdir)
.long SYMBOL_NAME(sys_rmdir) /* 40 */
.long SYMBOL_NAME(sys_dup)
.long SYMBOL_NAME(sys_pipe)
.long SYMBOL_NAME(sys_times)
.long SYMBOL_NAME(sys_ni_syscall) /* old prof syscall holder */
.long SYMBOL_NAME(sys_brk) /* 45 */
.long SYMBOL_NAME(sys_setgid16)
.long SYMBOL_NAME(sys_getgid16)
.long SYMBOL_NAME(sys_signal)
.long SYMBOL_NAME(sys_geteuid16)
.long SYMBOL_NAME(sys_getegid16) /* 50 */
.long SYMBOL_NAME(sys_acct)
.long SYMBOL_NAME(sys_umount) /* recycled never used phys() */
.long SYMBOL_NAME(sys_ni_syscall) /* old lock syscall holder */
.long SYMBOL_NAME(sys_ioctl)
.long SYMBOL_NAME(sys_fcntl) /* 55 */
.long SYMBOL_NAME(sys_ni_syscall) /* old mpx syscall holder */
.long SYMBOL_NAME(sys_setpgid)
.long SYMBOL_NAME(sys_ni_syscall) /* old ulimit syscall holder */
.long SYMBOL_NAME(sys_ni_syscall) /* sys_olduname */
.long SYMBOL_NAME(sys_umask) /* 60 */
.long SYMBOL_NAME(sys_chroot)
.long SYMBOL_NAME(sys_ustat)
.long SYMBOL_NAME(sys_dup2)
.long SYMBOL_NAME(sys_getppid)
.long SYMBOL_NAME(sys_getpgrp) /* 65 */
.long SYMBOL_NAME(sys_setsid)
.long SYMBOL_NAME(sys_sigaction)
.long SYMBOL_NAME(sys_sgetmask)
.long SYMBOL_NAME(sys_ssetmask)
.long SYMBOL_NAME(sys_setreuid16) /* 70 */
.long SYMBOL_NAME(sys_setregid16)
.long SYMBOL_NAME(sys_sigsuspend)
.long SYMBOL_NAME(sys_sigpending)
.long SYMBOL_NAME(sys_sethostname)
.long SYMBOL_NAME(sys_setrlimit) /* 75 */
.long SYMBOL_NAME(sys_old_getrlimit)
.long SYMBOL_NAME(sys_getrusage)
.long SYMBOL_NAME(sys_gettimeofday)
.long SYMBOL_NAME(sys_settimeofday)
.long SYMBOL_NAME(sys_getgroups16) /* 80 */
.long SYMBOL_NAME(sys_setgroups16)
.long SYMBOL_NAME(sys_ni_syscall) /* sys_oldselect */
.long SYMBOL_NAME(sys_symlink)
.long SYMBOL_NAME(sys_lstat)
.long SYMBOL_NAME(sys_readlink) /* 85 */
.long SYMBOL_NAME(sys_uselib)
.long SYMBOL_NAME(sys_swapon)
.long SYMBOL_NAME(sys_reboot)
.long SYMBOL_NAME(old_readdir)
.long SYMBOL_NAME(old_mmap) /* 90 */
.long SYMBOL_NAME(sys_munmap)
.long SYMBOL_NAME(sys_truncate)
.long SYMBOL_NAME(sys_ftruncate)
.long SYMBOL_NAME(sys_fchmod)
.long SYMBOL_NAME(sys_fchown16) /* 95 */
.long SYMBOL_NAME(sys_getpriority)
.long SYMBOL_NAME(sys_setpriority)
.long SYMBOL_NAME(sys_ni_syscall) /* old profil syscall holder */
.long SYMBOL_NAME(sys_statfs)
.long SYMBOL_NAME(sys_fstatfs) /* 100 */
.long SYMBOL_NAME(sys_ni_syscall) /* ioperm */
.long SYMBOL_NAME(sys_socketcall)
.long SYMBOL_NAME(sys_syslog)
.long SYMBOL_NAME(sys_setitimer)
.long SYMBOL_NAME(sys_getitimer) /* 105 */
.long SYMBOL_NAME(sys_newstat)
.long SYMBOL_NAME(sys_newlstat)
.long SYMBOL_NAME(sys_newfstat)
.long SYMBOL_NAME(sys_uname)
.long SYMBOL_NAME(sys_ni_syscall) /* 110 */ /* iopl */
.long SYMBOL_NAME(sys_vhangup)
.long SYMBOL_NAME(sys_ni_syscall) /* idle */
.long SYMBOL_NAME(sys_ni_syscall) /* vm86old */
.long SYMBOL_NAME(sys_wait4)
.long SYMBOL_NAME(sys_swapoff) /* 115 */
.long SYMBOL_NAME(sys_sysinfo)
.long SYMBOL_NAME(sys_ipc)
.long SYMBOL_NAME(sys_fsync)
.long SYMBOL_NAME(sys_sigreturn)
.long SYMBOL_NAME(sys_clone) /* 120 */
.long SYMBOL_NAME(sys_setdomainname)
.long SYMBOL_NAME(sys_newuname)
.long SYMBOL_NAME(sys_ni_syscall) /* sys_modify_ldt */
.long SYMBOL_NAME(sys_adjtimex)
.long SYMBOL_NAME(sys_mprotect) /* 125 */
.long SYMBOL_NAME(sys_sigprocmask)
.long SYMBOL_NAME(sys_create_module)
.long SYMBOL_NAME(sys_init_module)
.long SYMBOL_NAME(sys_delete_module)
.long SYMBOL_NAME(sys_get_kernel_syms) /* 130 */
.long SYMBOL_NAME(sys_quotactl)
.long SYMBOL_NAME(sys_getpgid)
.long SYMBOL_NAME(sys_fchdir)
.long SYMBOL_NAME(sys_bdflush)
.long SYMBOL_NAME(sys_sysfs) /* 135 */
.long SYMBOL_NAME(sys_personality)
.long SYMBOL_NAME(sys_ni_syscall) /* for afs_syscall */
.long SYMBOL_NAME(sys_setfsuid16)
.long SYMBOL_NAME(sys_setfsgid16)
.long SYMBOL_NAME(sys_llseek) /* 140 */
.long SYMBOL_NAME(sys_getdents)
.long SYMBOL_NAME(sys_select)
.long SYMBOL_NAME(sys_flock)
.long SYMBOL_NAME(sys_msync)
.long SYMBOL_NAME(sys_readv) /* 145 */
.long SYMBOL_NAME(sys_writev)
.long SYMBOL_NAME(sys_getsid)
.long SYMBOL_NAME(sys_fdatasync)
.long SYMBOL_NAME(sys_sysctl)
.long SYMBOL_NAME(sys_mlock) /* 150 */
.long SYMBOL_NAME(sys_munlock)
.long SYMBOL_NAME(sys_mlockall)
.long SYMBOL_NAME(sys_munlockall)
.long SYMBOL_NAME(sys_sched_setparam)
.long SYMBOL_NAME(sys_sched_getparam) /* 155 */
.long SYMBOL_NAME(sys_sched_setscheduler)
.long SYMBOL_NAME(sys_sched_getscheduler)
.long SYMBOL_NAME(sys_sched_yield)
.long SYMBOL_NAME(sys_sched_get_priority_max)
.long SYMBOL_NAME(sys_sched_get_priority_min) /* 160 */
.long SYMBOL_NAME(sys_sched_rr_get_interval)
.long SYMBOL_NAME(sys_nanosleep)
.long SYMBOL_NAME(sys_mremap)
.long SYMBOL_NAME(sys_setresuid16)
.long SYMBOL_NAME(sys_getresuid16) /* 165 */
.long SYMBOL_NAME(sys_ni_syscall) /* vm86 */
.long SYMBOL_NAME(sys_query_module)
.long SYMBOL_NAME(sys_poll)
.long SYMBOL_NAME(sys_nfsservctl)
.long SYMBOL_NAME(sys_setresgid16) /* 170 */
.long SYMBOL_NAME(sys_getresgid16)
.long SYMBOL_NAME(sys_prctl)
.long SYMBOL_NAME(sys_rt_sigreturn)
.long SYMBOL_NAME(sys_rt_sigaction)
.long SYMBOL_NAME(sys_rt_sigprocmask) /* 175 */
.long SYMBOL_NAME(sys_rt_sigpending)
.long SYMBOL_NAME(sys_rt_sigtimedwait)
.long SYMBOL_NAME(sys_rt_sigqueueinfo)
.long SYMBOL_NAME(sys_rt_sigsuspend)
.long SYMBOL_NAME(sys_pread) /* 180 */
.long SYMBOL_NAME(sys_pwrite)
.long SYMBOL_NAME(sys_chown16)
.long SYMBOL_NAME(sys_getcwd)
.long SYMBOL_NAME(sys_capget)
.long SYMBOL_NAME(sys_capset) /* 185 */
.long SYMBOL_NAME(sys_sigaltstack)
.long SYMBOL_NAME(sys_sendfile)
.long SYMBOL_NAME(sys_ni_syscall) /* streams1 */
.long SYMBOL_NAME(sys_ni_syscall) /* streams2 */
.long SYMBOL_NAME(sys_vfork) /* 190 */
.long SYMBOL_NAME(sys_getrlimit)
.long SYMBOL_NAME(sys_mmap2)
.long SYMBOL_NAME(sys_truncate64)
.long SYMBOL_NAME(sys_ftruncate64)
.long SYMBOL_NAME(sys_stat64) /* 195 */
.long SYMBOL_NAME(sys_lstat64)
.long SYMBOL_NAME(sys_fstat64)
.long SYMBOL_NAME(sys_lchown)
.long SYMBOL_NAME(sys_getuid)
.long SYMBOL_NAME(sys_getgid) /* 200 */
.long SYMBOL_NAME(sys_geteuid)
.long SYMBOL_NAME(sys_getegid)
.long SYMBOL_NAME(sys_setreuid)
.long SYMBOL_NAME(sys_setregid)
.long SYMBOL_NAME(sys_getgroups) /* 205 */
.long SYMBOL_NAME(sys_setgroups)
.long SYMBOL_NAME(sys_fchown)
.long SYMBOL_NAME(sys_setresuid)
.long SYMBOL_NAME(sys_getresuid)
.long SYMBOL_NAME(sys_setresgid) /* 210 */
.long SYMBOL_NAME(sys_getresgid)
.long SYMBOL_NAME(sys_chown)
.long SYMBOL_NAME(sys_setuid)
.long SYMBOL_NAME(sys_setgid)
.long SYMBOL_NAME(sys_setfsuid) /* 215 */
.long SYMBOL_NAME(sys_setfsgid)
.long SYMBOL_NAME(sys_pivot_root)
/*
* NOTE!! This doesn't have to be exact - we just have
* to make sure we have _enough_ of the "sys_ni_syscall"
* entries. Don't panic if you notice that this hasn't
* been shrunk every time we add a new system call.
*/
.rept NR_syscalls-217
.long SYMBOL_NAME(sys_ni_syscall)
.endr
/* End of entry.S */
|