Middle 61.2 KB
Newer Older
Neil Turton's avatar
Neil Turton committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
; Copyright 1996 Acorn Computers Ltd
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
;     http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
;
        TTL     => Middle

Kevin Bracey's avatar
Kevin Bracey committed
17 18 19 20 21 22 23 24 25
; Compatibility fudgery for OS_ReadLine and ReadLineV with 32-bit addresses

ReadLineSWI
        Push    "r4,lr"
        MOV     r4, #0
        SWI     XOS_ReadLine32
        Pull    "r4,lr"
        ; Pass back NZCV bits
        MRS     r11, CPSR
26
      [ NoARMT2
Kevin Bracey's avatar
Kevin Bracey committed
27 28 29
        BIC     lr,  lr,  #N_bit+Z_bit+C_bit+V_bit
        AND     r11, r11, #N_bit+Z_bit+C_bit+V_bit
        ORR     lr, lr, r11
30 31 32 33 34
      |
        ASSERT (N_bit+Z_bit+C_bit+V_bit)=&F0000000
        MOV     r11, r11, LSR #28
        BFI     lr, r11, #28, #4
      ]
Kevin Bracey's avatar
Kevin Bracey committed
35 36 37 38 39 40
        B       SLVK

ReadLine32SWI
        MOV     r11, #OS_ReadLine
        B       VecSwiDespatch

Neil Turton's avatar
Neil Turton committed
41 42 43 44
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; VecRdLine - Read line from input stream (OSWORD 0 equivalent)

; In    r0 -> buffer for characters
Kevin Bracey's avatar
Kevin Bracey committed
45
;       r1 =  max length of line (excluding carriage return)
Neil Turton's avatar
Neil Turton committed
46 47
;       r2 = lowest character put into buffer
;       r3 = highest character put into buffer
Kevin Bracey's avatar
Kevin Bracey committed
48 49 50 51
;       r4 = flags
;               bit 31 set means don't reflect characters that don't go in the buffer
;               bit 30 set means reflect with the character in R4
;               bits 7-0 = character to echo if r4 bit 30 is set
Neil Turton's avatar
Neil Turton committed
52 53
;       wp -> OsbyteVars

54 55
; Out   r0, r2, r3 corrupted
;       r1 = length of line (excluding carriage return)
Neil Turton's avatar
Neil Turton committed
56 57 58 59 60 61 62 63
;       C=0 => line terminated by return (CR or LF)
;       C=1 => line terminated by ESCAPE

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

VecRdLine ROUT

        Push    "R4-R7"
64

Kevin Bracey's avatar
Kevin Bracey committed
65 66
        MOV     R7, R4                  ; R7 = flags + echo byte
        MOV     R4, R0                  ; R4 -> buffer
Neil Turton's avatar
Neil Turton committed
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

        MOV     R6, #0                  ; R6 = index into buffer
        STRB    R6, PageModeLineCount   ; reset page lines

        B       %FT10
        LTORG

05
        SWI     XOS_WriteC
        BVS     ReadLine_Vset
10
        SWI     XOS_ReadC
        BVS     ReadLine_Vset
        BCS     %FT70                   ; ESCAPE

        LDRB    R5, WrchDest            ; does output include VDU ?
        TST     R5, #2
        BNE     %FT30                   ; no, then still buffer

        LDRB    R5, VDUqueueItems       ; is VDU queueing ?
        TEQ     R5, #0
        BNE     %BT05                   ; yes, then just print

30
        TEQ     R0, #127                ; is it DELETE ?
        TEQNE   R0, #8                  ; or backspace?
        BNE     %FT40                   ; no, then skip

        TEQ     R6, #0                  ; yes, then have we any chars ?
        BEQ     %BT10                   ; no, then loop
        SUB     R6, R6, #1              ; go back 1 char
        MOV     R0, #127
        B       %BT05                   ; print DEL and loop

40
        TEQ     R0, #21                 ; is it CTRL-U ?
        BNE     %FT50                   ; no, then skip

        TEQ     R6, #0                  ; yes, then have we any chars ?
        BEQ     %BT10                   ; no, then loop

45
        SWI     XOS_WriteI+127          ; print DELs to start of line
        BVS     ReadLine_Vset
        SUBS    R6, R6, #1
        BNE     %BT45
        B       %BT10                   ; then loop

50
        TEQ     R0, #13                 ; is it CR ?
        TEQNE   R0, #10                 ; or LF ?
        MOVEQ   r0, #13                 ; always store CR if so
        STRB    R0, [R4, R6]            ; store byte in buffer
        BEQ     %FT60                   ; Exit if either

        CMP     R6, R1                  ; is buffer full ?
        MOVCS   R0, #7                  ; if so, beep and loop
        BCS     %BT05

        CMP     R0, R2                  ; is char >= min ?
        CMPCS   R3, R0                  ; and char <= max ?
        ADDCS   R6, R6, #1              ; if so, then inc pointer
        BCS     %FT80
130
        TST     R7, #&80000000          ; no reflection
131
        BNE     %BT10                   ; of non-entered chars
Neil Turton's avatar
Neil Turton committed
132

133
80      TST     R7, #&40000000
Neil Turton's avatar
Neil Turton committed
134 135 136 137 138 139 140 141 142 143 144 145 146
        ANDNE   R0, R7, #&FF            ; echo char -> R0

        B       %BT05                   ; echo character

60      SWI     XOS_NewLine
        BVS     ReadLine_Vset

; insert code here to call NetVec with R0 = &0D

70
        CLRV
EndReadLine
        MOVVC   R0, R4                  ; restore R0
Jeffrey Lee's avatar
Jeffrey Lee committed
147
        LDR     R5, =ZeroPage
Neil Turton's avatar
Neil Turton committed
148 149 150 151
        LDRB    R5, [R5, #ESC_Status]
        MOVS    R5, R5, LSL #(32-6)     ; shift esc bit into carry

        MOV     R1, R6                  ; R1 := length
Kevin Bracey's avatar
Kevin Bracey committed
152
        Pull    "R4-R7, pc"             ; Always claiming vector
Neil Turton's avatar
Neil Turton committed
153 154 155 156 157 158 159 160 161 162

ReadLine_Vset
        SETV
        B       EndReadLine

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_Control (deprecated): set handlers

SCTRL   Push    "R0-R3, lr"

Kevin Bracey's avatar
Kevin Bracey committed
163
        WritePSRc SVC_mode+I_bit, R0    ; need IRQs off to get consistent state
Neil Turton's avatar
Neil Turton committed
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
        MOV     R0, #EventHandler
        MOV     R1, R3
        BL      CallCESWI
        STR     R1, [stack, #3*4]

        MOV     R0, #EscapeHandler
        LDR     R1, [stack, #2*4]
        BL      CallCESWI
        STR     R1, [stack, #2*4]

        MOV     R0, #ErrorHandler
        Pull    "R1, R3"
        BL      CallCESWI
        MOV     R0, R1
        MOV     R1, R3

        Pull    "R2, R3, lr"
        ExitSWIHandler


CallCESWI
        Push    lr
        MOV     r2, #0                  ; readonly
        SWI     XOS_ChangeEnvironment
        Pull    pc

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_SetEnv (deprecated): Environment setting

SSTENV  Push    "R0, R1, lr"
Kevin Bracey's avatar
Kevin Bracey committed
194
        WritePSRc SVC_mode+I_bit, R0    ; no irqs - want consistent set.
Neil Turton's avatar
Neil Turton committed
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
        MOV     R0, #AddressExceptionHandler
        MOV     R1, R7
        SWI     XOS_ChangeEnvironment
        MOV     R7, R1

        MOV     R0, #DataAbortHandler
        MOV     R1, R6
        SWI     XOS_ChangeEnvironment
        MOV     R6, R1

        MOV     R0, #PrefetchAbortHandler
        MOV     R1, R5
        SWI     XOS_ChangeEnvironment
        MOV     R5, R1

        MOV     R0, #UndefinedHandler
        MOV     R1, R4
        SWI     XOS_ChangeEnvironment
        MOV     R4, R1

        MOV     R0, #MemoryLimit
        LDR     R1, [stack, #4]
        SWI     XOS_ChangeEnvironment
        STR     R1, [stack, #4]

        MOV     R0, #ExitHandler
        Pull    "R1"
        BL      CallCESWI
        Push    "R1"

Jeffrey Lee's avatar
Jeffrey Lee committed
225
        LDR     R12, =ZeroPage
Neil Turton's avatar
Neil Turton committed
226
        LDR     R2, [R12, #RAMLIMIT]    ; this is read-only
227 228 229
        CMP     R2, #DynArea_PMP_BigPageCount
        MOVLO   R2, R2, LSL #12
        LDRHS   R2, =DynArea_PMP_BigByteCount ; more RAM than any Brazil could hope for
Neil Turton's avatar
Neil Turton committed
230 231 232 233 234 235 236 237 238
        MOV     R3, #0                  ; never any Brazil-type buffering
                                        ; m2 tools will complain if there is!
        Pull    "R0, R1, lr"
        ExitSWIHandler

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; Change user state SWIs
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Kevin Bracey's avatar
Kevin Bracey committed
239
SINTON  BIC     lr, lr, #I32_bit
Neil Turton's avatar
Neil Turton committed
240 241
        ExitSWIHandler

Kevin Bracey's avatar
Kevin Bracey committed
242
SINTOFF ORR     lr, lr, #I32_bit
Neil Turton's avatar
Neil Turton committed
243 244
        ExitSWIHandler

Kevin Bracey's avatar
Kevin Bracey committed
245 246 247 248 249
SENTERSWI
        TST   lr, #2_11100
        ORREQ lr, lr, #SVC26_mode       ; 26-bit modes -> SVC26
        BICNE lr, lr, #2_11111
        ORRNE lr, lr, #SVC32_mode       ; others -> SVC32
Neil Turton's avatar
Neil Turton committed
250 251
        ExitSWIHandler

252 253 254 255
SLEAVESWI
        BIC   lr, lr, #2_01111
        ExitSWIHandler

Neil Turton's avatar
Neil Turton committed
256 257 258 259 260
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_BreakPt: user breakpoint - unsuitable for debugging SVC mode code!

SBRKPT ROUT

261
        ADD     sp, sp, #4              ; discard stacked SWI number
Jeffrey Lee's avatar
Jeffrey Lee committed
262
        LDR     r10, =ZeroPage
263 264 265 266 267 268 269 270
        LDR     r10, [r10, #BrkBf]
        STR     r12, [r10, #16*4]       ; original PSR (with V)
        Pull    r14
        TST     r12, #T32_bit
        SUBEQ   r14, r14, #4
        SUBNE   r14, r14, #2            ; r14 = PC of the SWI
        TST     r12, #2_01111
        STR     r14, [r10, #15*4]       ; PC of the SWI put in.
Kevin Bracey's avatar
Kevin Bracey committed
271
        BNE     %FT01                   ; NE if not in user mode
Jeffrey Lee's avatar
Jeffrey Lee committed
272
        STR     r0, [r10], #4
273
        MOV     r0, r10
Neil Turton's avatar
Neil Turton committed
274
        LDMFD   sp, {r10-r12}
275 276 277 278 279 280

  [ SASTMhatbroken
        STMIA   r0!,{r1-r12}
        STMIA   r0, {r13_usr,r14_usr}^ ; user mode case done.
        SUB     r0, r0, #12*4
  |
Neil Turton's avatar
Neil Turton committed
281
        STMIA   r0, {r1-r12, r13_usr, r14_usr}^ ; user mode case done.
Neil Turton's avatar
Neil Turton committed
282
        NOP
283
  ]
Neil Turton's avatar
Neil Turton committed
284

285 286
10
        BL      TaskControl_ResetStacks ; R0-R3 corrupt, R13 reset
Jeffrey Lee's avatar
Jeffrey Lee committed
287
        LDR     r12, =ZeroPage+BrkAd_ws
Neil Turton's avatar
Neil Turton committed
288 289
        LDMIA   r12, {r12, pc}          ; call breakpoint handler

290 291
; Non-user mode case
01      AND     r11, r12, #2_01111      ; SVC26/SVC32 mode?
Kevin Bracey's avatar
Kevin Bracey committed
292 293
        TEQ     r11, #SVC_mode
        BEQ     %FT02                   ; [yes]
Neil Turton's avatar
Neil Turton committed
294

295
; Non-user, non-supervisor - must be IRQ, ABT, UND or SYS (no SWIs from FIQ)
Jeffrey Lee's avatar
Jeffrey Lee committed
296
        STR     r0, [r10], #4
297 298 299
        MOV     r0, r10
        BIC     r14, r12, #T32_bit      ; don't go into Thumb mode
        LDMFD   sp, {r10-r12}           ; Not banked
300
        MSR     CPSR_c, R14             ; get at registers r13 and r14
Jeffrey Lee's avatar
Jeffrey Lee committed
301 302 303
        STMIA   r0, {r1-r12}
        STR     sp, [r0, #12*4]
        STR     r14, [r0, #13*4]
Kevin Bracey's avatar
Kevin Bracey committed
304
        WritePSRc SVC_mode, r12
Neil Turton's avatar
Neil Turton committed
305 306
        B       %BT10

307
; Supervisor mode case
308
02      MOV     r14, r10                ; supervisor mode. R14 in buffer dead
Neil Turton's avatar
Neil Turton committed
309
        LDMFD   sp!, {r10-r12}
Jeffrey Lee's avatar
Jeffrey Lee committed
310 311
        STMIA   r14, {r0-r12}
        STR     r13, [r14, #13*4]
312 313
        LDR     r12, =&DEADDEAD
        STR     r12, [r14, #14*4]       ; mark R14 as dead
Neil Turton's avatar
Neil Turton committed
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
        B       %BT10

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_UnusedSWI (deprecated): Set the unused SWI handler

SUNUSED Push    "R1, lr"
        MOV     R1, R0
        MOV     R0, #UnusedSWIHandler
        SWI     XOS_ChangeEnvironment
        MOV     R0, R1
        Pull    "R1, lr"
        ExitSWIHandler

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_SetCallBack: Set callback flag

SSETCALL ROUT

332
        MSR     CPSR_c, #I32_bit + SVC32_mode
Jeffrey Lee's avatar
Jeffrey Lee committed
333
        LDR     r10, =ZeroPage
Neil Turton's avatar
Neil Turton committed
334 335 336
        LDRB    r11, [r10, #CallBack_Flag]
        ORR     r11, r11, #CBack_OldStyle
        STRB    r11, [r10, #CallBack_Flag]
Kevin Bracey's avatar
Kevin Bracey committed
337 338 339
        ADD     sp, sp, #4              ; Skip saved R11
        B       back_to_user_irqs_already_off
                                        ; Do NOT exit via normal mechanism
Neil Turton's avatar
Neil Turton committed
340 341 342 343 344 345

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI read mouse information
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

VecMouse
Kevin Bracey's avatar
Kevin Bracey committed
346
     WritePSRc SVC_mode+I_bit, R10
Neil Turton's avatar
Neil Turton committed
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
     MOV   R10, #MouseV
     Push "lr"
     BL    CallVector
     Pull "lr"
     ExitSWIHandler

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_SerialOp when not in kernel
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

SerialOp ROUT
        MOV     r10, #SerialV
        Push    lr
        BL      CallVector
        Pull    lr
        BICCC   lr, lr, #C_bit
        ORRCS   lr, lr, #C_bit
        B       SLVK_TestV

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; Supervisor routines to set default handlers
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

; Reset Error and Escape handlers

DEFHAN LDR  R1, =GeneralMOSBuffer         ; decent length error buffer
       ADR  R0, ERRORH
       ADR  R2, ESCAPH
       MOV  R3, #0
       MOV  R4, R14
       SWI  XOS_Control

       MOV  r0, #UpCallHandler
       ADR  r1, DefUpcallHandler
       MOV  r2, #0
       SWI  XOS_ChangeEnvironment

       MOV  PC, R4

; Reset Exception, Event, BreakPoint, UnusedSWI, Exit and CallBack handlers

DEFHN2 MOV  R12, R14
       MOV  R0, #0
       MOV  R1, #0
       MOV  R2, #0
       ADR  R3, EVENTH
       SWI  XOS_Control
394
       LDR  R0, =ZeroPage+DUMPER
Neil Turton's avatar
Neil Turton committed
395 396 397 398 399
       ADR  R1, NOCALL
       SWI  XOS_CallBack
       ADRL R0, CLIEXIT
       MOV  R1, #0
       MOV  R2, #0
400
       ADRL R4, UNDEF
401
       ADRL R5, ABORTP
Neil Turton's avatar
Neil Turton committed
402 403 404
       ADRL R6, ABORTD
       ADRL R7, ADDREX
       SWI  XOS_SetEnv
405
       LDR  R0, =ZeroPage+DUMPER
Neil Turton's avatar
Neil Turton committed
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
       ADR  R1, DEFBRK
       SWI  XOS_BreakCtrl
       ADRL R0, NoHighSWIHandler
       SWI  XOS_UnusedSWI
       MOV  PC, R12

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; system handlers
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

DefUpcallHandler
ESCAPH
EVENTH  MOV     pc, lr


Jeffrey Lee's avatar
Jeffrey Lee committed
421
NOCALL  LDR     r0, =ZeroPage               ; default callback routine
Neil Turton's avatar
Neil Turton committed
422
        LDR     r14, [r0, #CallBf]
Kevin Bracey's avatar
Kevin Bracey committed
423
        LDR     r0, [r14, #4*16]
424
        MSR     SPSR_cxsf, r0
Neil Turton's avatar
Neil Turton committed
425 426 427 428 429 430 431 432 433
        LDMIA   r14, {r0-r12, r13_usr, r14_usr}^ ; load user's regs
        NOP
        LDR     r14, [r14, #4*15]
        MOVS    pc, r14


ERRORH ROUT

      [ International
Jeffrey Lee's avatar
Jeffrey Lee committed
434 435 436
        SWI     XOS_EnterOS

        LDR     R0,=ZeroPage+KernelMessagesBlock+4
Neil Turton's avatar
Neil Turton committed
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
        ADR     R1,ErrorToken
        MOV     R2,#0
        SWI     XMessageTrans_Lookup
        MOVVC   R12,R2
        ADRVS   R12,ErrorText

01
        LDRB    R0,[R12],#1
        CMP     R0,#32
        BLT     %FT99
        CMP     R0,#"%"
        SWINE   XOS_WriteC
        BVS     %FT99
        BNE     %BT01

        LDRB    R0,[R12],#1              ; Found a %
        CMP     R0,#32
        BLT     %FT99

        CMP     R0,#"0"
        LDREQ   R0,=GeneralMOSBuffer+8
        BEQ     %FT10
        CMP     R0,#"1"
        BNE     %BT01

        LDR     R3,=GeneralMOSBuffer+4
        LDR     R0,[R3]
Jeffrey Lee's avatar
Jeffrey Lee committed
464
        LDR     R1,=ZeroPage+MOSConvertBuffer
Neil Turton's avatar
Neil Turton committed
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
        MOV     R2,#12
        SWI     XOS_ConvertHex8

02
        LDRB    R1, [R0], #1
        CMP     R1, #"0"
        BEQ     %BT02
        CMP     R1, #0
        SUBEQ   R0, R0, #1
        SUB     R0, R0, #1

10
        SWI     XOS_Write0
        BVC     %BT01

99
        SWI     XOS_NewLine

Jeffrey Lee's avatar
Jeffrey Lee committed
483
        LDR     R0, =ZeroPage
Neil Turton's avatar
Neil Turton committed
484 485 486
        STRB    R0, [R0, #ErrorSemaphore]                 ; Enable error translation, in case we got here in the
                                                        ; middle of looking up an error

Kevin Bracey's avatar
Kevin Bracey committed
487
        B       GOSUPV                          ; switches back to User mode for us
Neil Turton's avatar
Neil Turton committed
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504

ErrorToken      =       "Error:"
ErrorText       =       "Error: %0 (Error Number &%1)",0
        ALIGN
      |

        SWI     OS_WriteS
        =       10,13,"Error:",10,13, 0
        ALIGN
        LDR     r0, =GeneralMOSBuffer+4
        BL      PrintError
        B       GOSUPV
      ]


DEFBRK
      [ International
Kevin Bracey's avatar
Kevin Bracey committed
505
        WritePSRc 0, lr
Neil Turton's avatar
Neil Turton committed
506
        MOV     r0, r0
Jeffrey Lee's avatar
Jeffrey Lee committed
507
        LDR     r13, =ZeroPage
Neil Turton's avatar
Neil Turton committed
508 509 510 511 512 513 514 515 516
        LDR     r13, [r13, #BrkBf]
        LDR     r0, [r13, #15*4]
        LDR     r1, =GeneralMOSBuffer
        MOV     r2, #?GeneralMOSBuffer
        SWI     OS_ConvertHex8

; r0 -> address

        MOV     R4,R0
Jeffrey Lee's avatar
Jeffrey Lee committed
517
        LDR     R0,=ZeroPage+KernelMessagesBlock+4
Neil Turton's avatar
Neil Turton committed
518 519 520 521 522 523 524 525 526 527 528 529 530
        ADR     R1,BreakToken
        LDR     R2,=GeneralMOSBuffer+16
        MOV     R3,#256-16
        SWI     XMessageTrans_Lookup
        MOVVC   R0,R2
        ADRVS   R0,BreakText
        SWI     OS_Write0
        SWI     OS_NewLine

      |
        SWI     OS_WriteS
        = "Stopped at break point at &", 0
        ALIGN
Kevin Bracey's avatar
Kevin Bracey committed
531
        WritePSRc 0, lr
Neil Turton's avatar
Neil Turton committed
532
        MOV     r0, r0
Jeffrey Lee's avatar
Jeffrey Lee committed
533
        LDR     r13, =ZeroPage
Neil Turton's avatar
Neil Turton committed
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
        LDR     r13, [r13, #BrkBf]
        LDR     r0, [r13, #15*4]
        LDR     r1, =GeneralMOSBuffer
        MOV     r2, #?GeneralMOSBuffer
        SWI     OS_ConvertHex8
        SWI     OS_Write0
        SWI     OS_NewLine
      ]

Quit_Code
        SWI     OS_Exit

      [ International

BreakToken      =       "BreakPt:"
BreakText       =       "Stopped at break point at &%0",0
        ALIGN

      ]

PrintError
        MOV    R12, R14
        LDR    R10, [R0], #4
        SWI    XOS_Write0
        BVS    %FT02
      [ :LNOT: International
        SWI    XOS_WriteS
        =     " (Error number &", 0
        BVS    %FT02
      ]
        LDR    R1,=GeneralMOSBuffer
        MOV    R2, #&E0
        MOV    R0, R10
        SWI    XOS_ConvertHex8       ; can't fail!
01      LDRB   R1, [R0], #1
        CMP    R1, #"0"
        BEQ    %BT01
        CMP    R1, #0
        SUBEQ  R0, R0, #1
      [ International                   ; We might not have any stack so ..
        SUB    R11,R0, #1               ; R11 -> Error number
Jeffrey Lee's avatar
Jeffrey Lee committed
575
        LDR    R0, =ZeroPage+KernelMessagesBlock+4
Neil Turton's avatar
Neil Turton committed
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
        ADR    R1, PrintErrorString
        MOV    R2,#0                    ; Don't copy message
        SWI    XMessageTrans_Lookup
        ADRVS  R2,PrintErrorString+4    ; If no MessageTrans point at english text.
11
        LDRB   R0,[R2],#1
        CMP    R0,#32
        BLT    %FT13
        CMP    R0,#"%"
        SWINE  XOS_WriteC
        BVS    %FT13
        BNE    %BT11

        LDRB    R0,[R2],#1
        CMP     R0,#32
        BLT     %FT13                   ; Just in case the % is the last character !

        CMP     R0,#"0"                 ; We only know about %0
        BNE     %BT11

12
        LDRB    R0,[R11],#1              ; Print error number.
        CMP     R0,#32
        BLT     %BT11
        SWI     XOS_WriteC
        BVC     %BT12

13
      |
        SUB    R0, R0, #1
        SWI    XOS_Write0
        SWIVC  XOS_WriteI+")"
      ]
        SWIVC  XOS_NewLine
Kevin Bracey's avatar
Kevin Bracey committed
610
02      MOV    PC, R12
Neil Turton's avatar
Neil Turton committed
611 612 613 614 615 616 617 618 619 620 621 622 623

      [ International
PrintErrorString
        =     "Err: (Error number &%0)", 0
        ALIGN
      ]

        LTORG

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; Exception handling

DumpyTheRegisters  ROUT
624 625
; R0 points at r8 in register dump. r0-r7, PC, PSR saved
; R1 is PSR
626
; R4 is offset from saved PC for error message, or -1 if error should be used verbatim
627 628
; R14 points at error block
; In ABT32 or UND32
629
        MOV     R7, R14                 ; put error address into unbanked register
Kevin Bracey's avatar
Kevin Bracey committed
630
        TST     R1, #&0F
631 632 633 634 635
  [ SASTMhatbroken
        STMEQIA R0!,{R8-R12}
        STMEQIA R0, {R13,R14}^        ; user mode case done.
        SUBEQ   R0, R0, #5*4
  |
Neil Turton's avatar
Neil Turton committed
636
        STMEQIA R0, {R8-R14}^         ; user mode case done.
637
  ]
Kevin Bracey's avatar
Kevin Bracey committed
638 639
        BEQ     UNDEF2

640 641 642
        MRS     R3, CPSR
        AND     R3, R3, #&0F

Kevin Bracey's avatar
Kevin Bracey committed
643 644
        ORR     R2, R1, #I32_bit :OR: F32_bit
        BIC     R2, R2, #T32_bit
645
        MSR     CPSR_c, R2              ; change into original mode
Jeffrey Lee's avatar
Jeffrey Lee committed
646
        STMIA   R0, {R8-R12}            ; save the banked registers
Kevin Bracey's avatar
Kevin Bracey committed
647 648

        AND     R2, R1, #&0F
649 650 651 652 653
        CMP     R2, R3                  ; did abort come from our abort-handling mode?
        MOV     R3, SP
        ADDEQ   R3, R3, #17*4           ; adjust stored SP if so
        LDREQ   R14, =&DEADDEAD         ; and mark R14 as corrupt
        STR     R3, [R0, #5*4]
Kevin Bracey's avatar
Kevin Bracey committed
654
        EORS    R2, R2, #FIQ_mode       ; Was we in FIQ ? Zero if so
Jeffrey Lee's avatar
Jeffrey Lee committed
655 656
        STR     R14, [R0, #6*4]

Ben Avison's avatar
Ben Avison committed
657
        BNE     UNDEF2
658
        MSR     CPSR_c, #I32_bit+F32_bit+ABT32_mode ; into ABT mode so we have a stack (try and preserve SVC stack for any exception dump that's produced)
659
        Push    "r0"
Jeffrey Lee's avatar
Jeffrey Lee committed
660 661 662
      [ ZeroPage <> 0
        LDR     R2, =ZeroPage
      ]
Ben Avison's avatar
Ben Avison committed
663 664
        AddressHAL R2
        CallHAL HAL_FIQDisableAll
665
        Pull    "r0"
Kevin Bracey's avatar
Kevin Bracey committed
666 667 668
UNDEF2
; ... and fall into
UNDEF1
669 670 671 672 673 674 675 676
        ; R0 points at R8 in register dump
        ; R7 points at error block
        MSR     CPSR_c, #I32_bit+F32_bit+ABT32_mode ; into ABT mode for exception dump
        SUB     R0, R0, #8*4            ; Make R0 sensible for vector
        MOV     R1, R7
        MOV     R2, #SeriousErrorV_Collect
        MOV     R10, #SeriousErrorV
        BL      CallVector
677

678 679 680 681 682 683 684
        ; Unwind & flatten all the stacks.
        ; This does leave the register dump floating somewhere in the abort
        ; stack, but with all interrupts turned off it should be safe enough,
        ; especially as we copy it away immediately afterwards.
        ADD     R10, R0, #8*4
        BL      TaskControl_ResetStacks ; R0-R3 corrupt, R13 reset

685
        MSR     CPSR_c, #I32_bit+F32_bit+SVC32_mode ; into SVC mode
686 687 688

        ; Copy the register dump from its unsafe location on the abort stack,
        ; to a temp location on the SVC stack
689 690 691 692
        LDMIA   R10, {R0-R3, R5-R6, R8-R9, R11} ; R8-R15, PSR
        Push    "R0-R3, R5-R6, R8-R9, R11"
        LDMDB   R10, {R0-R3, R5-R6, R8-R9} ; R0-R7
        Push    "R0-R3, R5-R6, R8-R9"
693 694

        MSR     CPSR_c, #SVC32_mode+I32_bit ; Restore FIQs, we don't need them to be blocked now that the register dump is safe
695

696
        ; Check that ExceptionDump is safe to use
697
        Push    "R7"                    ; Preserve error ptr
698 699
        LDR     R5, =ZeroPage
        LDR     R1, [R5, #ExceptionDump]
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
        MOV     R0, #24
        ADD     R2, R1, #17*4
        ; Must be SVC-writable, user+SVC readable, word aligned
        SWI     XOS_Memory
        AND     r1, r1, #CMA_Completely_UserR+CMA_Completely_PrivR+CMA_Completely_PrivW
        TEQ     r1, #CMA_Completely_UserR+CMA_Completely_PrivR+CMA_Completely_PrivW
        TSTEQ   r2, #3
        BEQ     %FT05
        ; Reset to default location. Unfortunately the Debugger module is a bit
        ; braindead and will only show the contents of the register dump located
        ; within its workspace, so resetting it to the kernel buffer isn't the
        ; best for debugging. But it's better than an infinite abort loop!
        MOV     R0, #ExceptionDumpArea
        LDR     R1, =ZeroPage+DUMPER
        SWI     XOS_ChangeEnvironment
05
716
        Pull    "R14"                   ; Restore error ptr
717

718
        ; Now move the dump from the SVC stack to ExceptionDump
719
        LDR     R0, [R5, #ExceptionDump]
720
        Pull    "R1-R2,R5-R10"          ; R0-R7
721
        STMIA   R0!, {R1-R2,R5-R10}
722
        Pull    "R1-R2,R5-R11"          ; R8-R15, PSR
723
        STMIA   R0, {R1-R2,R5-R11}
724 725 726

        SUB     R0, R0, #8*4
                                        ; try and put back user R10-R12
727
        Push    "R5-R7"                 ; for error handler to find on stack
Neil Turton's avatar
Neil Turton committed
728 729 730
        LDR     R1, [R0, #15*4]
        Push    R1

731 732 733 734 735 736 737 738 739 740 741 742 743
        CMP     r4, #-1
        BNE     %FT07
        ; Custom error provided, try and copy it to the stack to make sure it
        ; doesn't get overwritten before we're able to report it (there's a
        ; chance it's in a shared MessageTrans buffer)
        LDR     r10, =ZeroPage
        LDRB    r10, [r10, #ErrorSemaphore]
        TEQ     r10, #0
        MOV     r0, r14                 ; Error block to copy from
        MOVNE   r10, r14                ; !=R0 if we want to copy, = if we don't
        B       %FT11                   ; Jump to the copy check

07
Neil Turton's avatar
Neil Turton committed
744 745 746
        LDR     R0, =GeneralMOSBuffer+128 ; so can do deviant sharing !

       [ International
Jeffrey Lee's avatar
Jeffrey Lee committed
747
        LDR     r10, =ZeroPage
Neil Turton's avatar
Neil Turton committed
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
        LDRB    r10, [r10, #ErrorSemaphore]
        TEQ     r10, #0                 ; if ok to translate error
        MOVEQ   r10, r14
        BEQ     %FT10
       ]

        LDR     r11, [r14], #4          ; Copy error number
        STR     r11, [r0], #4

01      LDRB    r11, [r14], #1          ; Copy error string
        STRB    r11, [r0], #1
        CMP     r11, #"%"               ; Test for "%" near end of string
        BNE     %BT01
10
        SUB     r1, r0, #1              ; point, ready for conversion

        LDR     R2, =GeneralMOSBuffer+?GeneralMOSBuffer
        SUB     r2, r2, r1              ; amount left in buffer

Jeffrey Lee's avatar
Jeffrey Lee committed
767
        LDR     R0, =ZeroPage
Neil Turton's avatar
Neil Turton committed
768 769
        LDR     R0, [R0, #ExceptionDump]
        LDR     R0, [R0, #15*4]         ; saved PC
770
        SUB     R0, R0, R4
Neil Turton's avatar
Neil Turton committed
771 772 773
        SWI     XOS_ConvertHex8

      [ International
Jeffrey Lee's avatar
Jeffrey Lee committed
774
        LDR     r4, =ZeroPage
Neil Turton's avatar
Neil Turton committed
775 776 777
        LDRB    r4, [r4, #ErrorSemaphore]
        TEQ     r4, #0
        LDRNE   R0, =GeneralMOSBuffer+128
778 779 780 781 782 783 784 785 786
        BNE     %FT20
        MOV     R4, R0
        MOV     R0, R10
        BL      TranslateError_UseR4
        ; If the exception dump processing takes too long then there's a good
        ; chance the error buffer MessageTrans gave us will get overwritten
        ; before we're able to call OS_GenerateError. Copy the error to the
        ; stack, then copy it back into a MessageTrans block before calling
        ; OS_GenerateError.
787
11
788 789 790 791 792 793 794
        EORS    R4, R0, R10 ; Did TranslateError work?
        BEQ     %FT20
        SUB     SP, SP, #256
        MOV     R4, SP
        MOV     R5, #4
        LDR     R6, [R0]
        STR     R6, [R4]
795
15
796 797 798 799
        LDRB    R6, [R0, R5]
        CMP     R6, #0
        STRB    R6, [R4, R5]
        ADD     R5, R5, #1
800
        BNE     %BT15
801 802
        MOV     R0, R4
20
Neil Turton's avatar
Neil Turton committed
803 804 805 806
      |
        LDR     R0, =GeneralMOSBuffer+128
      ]

807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
        ; Let everyone know that the stacks have been reset
        MOV     R2, #SeriousErrorV_Recover
        MOV     R10, #SeriousErrorV
        BL      CallVector

        ; Now enable IRQs and trigger exception dump processing
        MSR     CPSR_c, #SVC32_mode
        MOV     R2, #SeriousErrorV_Report
        MOV     R10, #SeriousErrorV
        BL      CallVector

      [ International
        ; Try and copy error block from stack back to MessageTrans
        LDR     R3, =ZeroPage
        LDRB    R3, [R3, #ErrorSemaphore]
        TEQ     R3, #0
        BNE     %FT30
        CMP     R4, #0 ; Check if original TranslateError call worked (if not, no error block to copy)
        BEQ     %FT30
        SWI     XMessageTrans_CopyError
        ; If TranslateError worked, assume MessageTrans_CopyError worked too
        ADD     SP, SP, #256
30
      ]
Neil Turton's avatar
Neil Turton committed
831 832 833 834 835
        SWI     OS_GenerateError

        LTORG

UNDEF ROUT
Kevin Bracey's avatar
Kevin Bracey committed
836
        ; In UND32 mode, with a stack
837 838
        ; Place exception dump on stack until we can be sure ExceptionDump is safe
        STR     R14, [SP, #-8]!
Kevin Bracey's avatar
Kevin Bracey committed
839
        SETPSR  F_bit :OR: I_bit, R14
840 841
        SUB     SP, SP, #17*4-8
        MOV     R14, SP
Neil Turton's avatar
Neil Turton committed
842
        STMIA   R14!, {R0-R7}
843
        MRS     R1, SPSR
Kevin Bracey's avatar
Kevin Bracey committed
844
        STR     R1, [R14, #(16-8)*4]            ; save PSR
845
        TST     R1, #T32_bit
Neil Turton's avatar
Neil Turton committed
846
        MOV     R0, R14
847 848
        MOVEQ   R4, #4
        MOVNE   R4, #2
Neil Turton's avatar
Neil Turton committed
849 850 851 852
        BL      DumpyTheRegisters
        MakeErrorBlock UndefinedInstruction

ABORTP ROUT
Kevin Bracey's avatar
Kevin Bracey committed
853
        ; In ABT32 mode, with a stack
854
        STR     R14, [SP, #-8]!
Kevin Bracey's avatar
Kevin Bracey committed
855
        SETPSR  F_bit :OR: I_bit, R14
856 857
        SUB     SP, SP, #17*4-8
        MOV     R14, SP
Neil Turton's avatar
Neil Turton committed
858
        STMIA   R14!, {R0-R7}
859
        MRS     R1, SPSR
Kevin Bracey's avatar
Kevin Bracey committed
860
        STR     R1, [R14, #(16-8)*4]            ; save PSR
Neil Turton's avatar
Neil Turton committed
861
        MOV     R0, R14
862
        MOV     R4, #4
Neil Turton's avatar
Neil Turton committed
863 864 865 866
        BL      DumpyTheRegisters
        MakeErrorBlock InstructionAbort

ABORTD ROUT
Kevin Bracey's avatar
Kevin Bracey committed
867
        ; In ABT32 mode, with a stack
868
        STR     R14, [SP, #-8]!
Kevin Bracey's avatar
Kevin Bracey committed
869
        SETPSR  F_bit :OR: I_bit, R14
870 871
        SUB     SP, SP, #17*4-8
        MOV     R14, SP
Neil Turton's avatar
Neil Turton committed
872
        STMIA   R14!, {R0-R7}
873
        MRS     R1, SPSR
Kevin Bracey's avatar
Kevin Bracey committed
874
        STR     R1, [R14, #(16-8)*4]            ; save PSR
Neil Turton's avatar
Neil Turton committed
875
        MOV     R0, R14
876
        MOV     R4, #8
Neil Turton's avatar
Neil Turton committed
877 878 879 880 881
        BL      DumpyTheRegisters
        MakeErrorBlock DataAbort


ADDREX ROUT
Kevin Bracey's avatar
Kevin Bracey committed
882
; This really can't happen. Honest
883
        ; ??? in ABT32 mode, with a stack?
884
        STR     R14, [SP, #-8]!
885
        SETPSR  F_bit :OR: I_bit, R14
886 887
        SUB     SP, SP, #17*4-8
        MOV     R14, SP
Neil Turton's avatar
Neil Turton committed
888
        STMIA   R14!, {R0-R7}
889
        MRS     R1, SPSR
Kevin Bracey's avatar
Kevin Bracey committed
890
        STR     R1, [R14, #(16-8)*4]            ; save PSR
891
        MOV     R0, R14
892
        MOV     R4, #0
Neil Turton's avatar
Neil Turton committed
893 894 895 896 897
        BL      DumpyTheRegisters
        MakeErrorBlock AddressException


; Can branch through zero in any mode
898
; We go through a trampoline which stores R1 and R14 (at R14 on entry)
Neil Turton's avatar
Neil Turton committed
899

900 901
Branch0_NoTrampoline_DummyRegs
        &       &DEADDEAD, &DEADDEAD
Neil Turton's avatar
Neil Turton committed
902
RESET1 ROUT
903 904 905
Branch0_NoTrampoline
        ADR     R14, Branch0_NoTrampoline_DummyRegs
Branch0_FromTrampoline
Neil Turton's avatar
Neil Turton committed
906

Jeffrey Lee's avatar
Jeffrey Lee committed
907
        LDR     R1, =ZeroPage
Neil Turton's avatar
Neil Turton committed
908
        LDR     R1, [R1, #ExceptionDump]
Jeffrey Lee's avatar
Jeffrey Lee committed
909 910
        STMIA   R1, {R0-R12}
        STR     R13, [R1, #13*4]
911 912 913 914
        LDR     R0, [R14, #0]
        STR     R0, [R1, #1*4]
        LDR     R0, [R14, #4]
        STR     R0, [R1, #14*4]
Kevin Bracey's avatar
Kevin Bracey committed
915 916 917 918 919
 [ XScaleJTAGDebug
        MRS     R0, CPSR
        AND     R0, R0, #&1F
        TEQ     R0, #&15        ; Debug mode?
        BNE     %FT20
Jeffrey Lee's avatar
Jeffrey Lee committed
920
        LDR     R13, =ZeroPage
Kevin Bracey's avatar
Kevin Bracey committed
921 922 923
        LDR     R0, [R13, #ProcessorFlags]
        ORR     R0, R0, #CPUFlag_XScaleJTAGconnected
        STR     R0, [R13, #ProcessorFlags]
924
        LDMIA   R1, {R0, R1}
Kevin Bracey's avatar
Kevin Bracey committed
925 926 927
        B       DebugStub
20
 ]
Kevin Bracey's avatar
Kevin Bracey committed
928 929
        MOV     R0, #0
        STR     R0, [R1, #15*4]
930
        MRS     R0, CPSR
Kevin Bracey's avatar
Kevin Bracey committed
931
        STR     R0, [R1, #16*4]
Neil Turton's avatar
Neil Turton committed
932 933
        SWI     XOS_EnterOS

934 935 936 937
        LDR     R0, =ZeroPage
        LDR     R0, [R0, #ExceptionDump]
        ADD     R0, R0, #8*4

938
        ADR     R7, ErrorBlock_BranchThrough0
939
        MOV     R4, #0
940
        B       UNDEF1
Neil Turton's avatar
Neil Turton committed
941 942
        MakeErrorBlock BranchThrough0

Kevin Bracey's avatar
Kevin Bracey committed
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
 [ XScaleJTAGDebug
        ; Magic from the Multi-ICE User Guide
        ALIGN   32
DebugStub ROUT
        ARM_read_control R13
        AND     R13, R13, #MMUC_I
        ORR     R14, R14, R13, LSR #12
        ARM_read_control R13
        ORR     R13, R13, #MMUC_I
        ARM_write_control R13
        ADR     R13, DebugStubLine2
        MCR     p15, 0, R13, C7, C5, 1
        MCR     p15, 0, R13, C7, C5, 6
10      MRC     p14, 0, R15, C14, C0
        BVS     %BT10
        MOV     R13, #&00B00000
        MCR     p14, 0, R13, C8, C0
20      MRC     p14, 0, R15, C14, C0
        BPL     %BT20
        ARM_read_control R13
        TST     R14, #1
        BICEQ   R13, R13, #MMUC_I
        ARM_write_control R13
        MRC     p14, 0, R13, C9, C0
        MOV     PC, R13
        ALIGN   32
DebugStubLine2
        SPACE   32
 ]
Neil Turton's avatar
Neil Turton committed
972 973 974 975 976 977 978 979

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI to call the UpCall vector
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

DoAnUpCall ROUT

        Push    lr                  ; better have one of these to pull later !
980
        MRS     r12, CPSR
981
      [ NoARMT2
Kevin Bracey's avatar
Kevin Bracey committed
982 983 984 985
        BIC     r12, r12, #&F0000000
        BIC     r12, r12, #I32_bit:OR:F32_bit
        AND     r10, lr, #&F0000000 ; copy user flags (I bit clear)
        ORR     r10, r10, r12
986 987 988 989 990
      |
        MOV     lr, lr, LSR #28
        BIC     r10, r12, #I32_bit:OR:F32_bit
        BFI     r10, lr, #28, #4 ; copy user flags (I bit clear)
      ]
991
        MSR     CPSR_cf, r10        ; ints on, stay in SVC mode, flags in psr
Neil Turton's avatar
Neil Turton committed
992 993
        MOV     r10, #UpCallV
        BL      CallVector
994
 [ NoARMT2
Neil Turton's avatar
Neil Turton committed
995 996
        Pull    lr
        BIC     lr, lr, #&F0000000
997
        MRS     R10, CPSR
Kevin Bracey's avatar
Kevin Bracey committed
998
        MOV     R10, R10, LSR #(32-4)
Neil Turton's avatar
Neil Turton committed
999
        ORR     lr, lr, R10, LSL #(32-4)
1000 1001 1002 1003 1004 1005
 |
        MRS     R10, CPSR
        Pull    lr
        MOV     R10, R10, LSR #28
        BFI     lr, R10, #28, #4
 ]
Neil Turton's avatar
Neil Turton committed
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
        ExitSWIHandler

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_ChangeEnvironment: Call the environment change vector
; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

ChangeEnvironment ROUT

        Push    lr
        MOV     R10, #ChangeEnvironmentV
        BL      CallVector
        Pull    lr
        B       SLVK_TestV


; ..... and the default handler .....

AdjustOurSet
Kevin Bracey's avatar
Kevin Bracey committed
1024
        WritePSRc SVC_mode+I_bit, R14
Neil Turton's avatar
Neil Turton committed
1025 1026 1027
        CMP     R0, #MaxEnvNumber
        BHI     AOS_Silly

1028
  [ {FALSE}
Neil Turton's avatar
Neil Turton committed
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
        CMP     r0, #CallBackHandler
        BLEQ    testcallbackpending
  ]

        ADR     R10, AOS_Table
        ADD     R11, R0, R0, LSL #1   ; number * 3
        ADD     R10, R10, R11, LSL #2 ; point at entry

        MOV     R12, R1
        LDR     R11, [R10]
        CMP     R11, #0
        LDRNE   R1,  [R11]
        CMPNE   R12, #0
        STRNE   R12, [R11]

        MOV     R12, R2
        LDR     R11, [R10, #4]
        CMP     R11, #0
        LDRNE   R2,  [R11]
        CMPNE   R12, #0
        STRNE   R12, [R11]

        MOV     R12, R3
        LDR     R11, [R10, #8]
        CMP     R11, #0
        LDRNE   R3,  [R11]
        CMPNE   R12, #0
        STRNE   R12, [R11]

Kevin Bracey's avatar
Kevin Bracey committed
1058
        Pull    pc
Neil Turton's avatar
Neil Turton committed
1059 1060 1061 1062 1063 1064 1065

AOS_Silly
        ADR     r0, ErrorBlock_BadEnvNumber
      [ International
        BL      TranslateError
      ]
exit_AOS
Kevin Bracey's avatar
Kevin Bracey committed
1066 1067
        SETV
        Pull    "pc"
Neil Turton's avatar
Neil Turton committed
1068 1069 1070
        MakeErrorBlock BadEnvNumber

AOS_Table
Jeffrey Lee's avatar
Jeffrey Lee committed
1071
        &  ZeroPage+MemLimit     ;  MemoryLimit
Neil Turton's avatar
Neil Turton committed
1072 1073 1074
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1075
        &  ZeroPage+UndHan       ; UndefinedHandler
Neil Turton's avatar
Neil Turton committed
1076 1077 1078
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1079
        &  ZeroPage+PAbHan       ; PrefetchAbortHandler
Neil Turton's avatar
Neil Turton committed
1080 1081 1082
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1083
        &  ZeroPage+DAbHan       ; DatabortHandler
Neil Turton's avatar
Neil Turton committed
1084 1085 1086
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1087
        &  ZeroPage+AdXHan       ; AddressExceptionHandler
Neil Turton's avatar
Neil Turton committed
1088 1089 1090 1091 1092 1093 1094
        &  0
        &  0

        &  0            ; OtherExceptionHandler
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1095 1096 1097
        &  ZeroPage+ErrHan       ; ErrorHandler
        &  ZeroPage+ErrHan_ws
        &  ZeroPage+ErrBuf
Neil Turton's avatar
Neil Turton committed
1098

Jeffrey Lee's avatar
Jeffrey Lee committed
1099 1100 1101
        &  ZeroPage+CallAd       ; CallBackHandler
        &  ZeroPage+CallAd_ws
        &  ZeroPage+CallBf
Neil Turton's avatar
Neil Turton committed
1102

Jeffrey Lee's avatar
Jeffrey Lee committed
1103 1104 1105
        &  ZeroPage+BrkAd        ; BreakPointHandler
        &  ZeroPage+BrkAd_ws
        &  ZeroPage+BrkBf
Neil Turton's avatar
Neil Turton committed
1106

Jeffrey Lee's avatar
Jeffrey Lee committed
1107 1108
        &  ZeroPage+EscHan       ; EscapeHandler
        &  ZeroPage+EscHan_ws
Neil Turton's avatar
Neil Turton committed
1109 1110
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1111 1112
        &  ZeroPage+EvtHan       ; EventHandler
        &  ZeroPage+EvtHan_ws
Neil Turton's avatar
Neil Turton committed
1113 1114
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1115 1116
        &  ZeroPage+SExitA       ; ExitHandler
        &  ZeroPage+SExitA_ws
Neil Turton's avatar
Neil Turton committed
1117 1118
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1119 1120
        &  ZeroPage+HiServ       ; UnusedSWIHandler
        &  ZeroPage+HiServ_ws
Neil Turton's avatar
Neil Turton committed
1121 1122
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1123
        &  ZeroPage+ExceptionDump ; ExceptionDumpArea
Neil Turton's avatar
Neil Turton committed
1124 1125 1126
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1127
        &  ZeroPage+AplWorkSize  ; application space size
Neil Turton's avatar
Neil Turton committed
1128 1129 1130
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1131
        &  ZeroPage+Curr_Active_Object
Neil Turton's avatar
Neil Turton committed
1132 1133 1134
        &  0
        &  0

Jeffrey Lee's avatar
Jeffrey Lee committed
1135 1136
        &  ZeroPage+UpCallHan
        &  ZeroPage+UpCallHan_ws
Neil Turton's avatar
Neil Turton committed
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
        &  0

        assert (.-AOS_Table)/12 = MaxEnvNumber

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; SWI OS_ReadDefaultHandler

; In    r0 = environment number

ReadDefaultHandler ROUT

        CMP     r0, #(dhte-defhantab)/12
        MOVHS   r0, #0                  ; return wally value
        ADD     r10, r0, r0, LSL #1     ; *3
        ADD     r10, pc, r10, LSL #2    ; *4 (pc = defhantab-4)
        LDMIB   r10, {r1-r3}            ; gives additional +4
        ExitSWIHandler

defhantab
     & 0                ; wally entry
     & 0
     & 0

     & UNDEF            ; UndefinedHandler
     & 0
     & 0

     & ABORTP           ; PrefetchAbortHandler
     & 0
     & 0

     & ABORTD           ; DataAbortHandler
     & 0
     & 0

     & ADDREX           ; AddressExceptionHandler
     & 0
     & 0

     & 0                ; OtherExceptionHandler
     & 0
     & 0

     & ERRORH           ; ErrorHandler
     & 0
     & GeneralMOSBuffer

     & NOCALL           ; CallBackHandler
     & 0
1186
     & ZeroPage+DUMPER
Neil Turton's avatar
Neil Turton committed
1187 1188 1189

     & DEFBRK           ; BreakPointHandler
     & 0
1190
     & ZeroPage+DUMPER
Neil Turton's avatar
Neil Turton committed
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231

     & ESCAPH           ; EscapeHandler
     & 0
     & GeneralMOSBuffer

     & EVENTH           ; EventHandler
     & 0
     & 0

     & CLIEXIT          ; ExitHandler
     & 0
     & 0

     & NoHighSWIHandler ; UnusedSWIHandler
     & 0
     & 0

     & 0                ; exception dump
     & 0
     & 0

     & 0                ; app space size
     & 0
     & 0

     & 0                ; cao pointer
     & 0
     & 0

     & DefUpcallHandler ; upcall handler
     & 0
     & 0

dhte

; +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; In    r0 = sysinfo handle

; Out   r0 = sysinfo for r0in

ReadSysInfo_Code ROUT
1232
        CMP     r0,#16 ;R0 > 15, so illegal value
Kevin Bracey's avatar
Kevin Bracey committed
1233 1234
        ADDLO   PC, PC, R0,LSL #2
        B       ReadSysInfo_InvalidReason
Neil Turton's avatar
Neil Turton committed
1235

Kevin Bracey's avatar
Kevin Bracey committed
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
        B       %FT00
        B       %FT10
        B       %FT20
        B       %FT30
        B       %FT40
        B       %FT50
        B       %FT60
        B       %FT70
        B       %FT80
        B       %FT90
1246 1247 1248
        B       ReadSysInfo_InvalidReason ; ROL's "read OS version" call
        B       %FT110
        B       %FT120
1249
        B       %FT130
1250
        B       %FT140
1251
        B       %FT150
Kevin Bracey's avatar
Kevin Bracey committed
1252 1253

ReadSysInfo_InvalidReason
Neil Turton's avatar
Neil Turton committed
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
        ADR     r0, ErrorBlock_BadReadSysInfo
      [ International
        Push    "lr"
        BL      TranslateError
        Pull    "lr"
      ]
        ORR     lr, lr, #V_bit
        ExitSWIHandler

        MakeErrorBlock BadReadSysInfo

; ReadSysInfo(0) - return configured screensize in r0

00
        Push    "r1, r2, lr"
        MOV     r0, #ReadCMOS
        MOV     r1, #ScreenSizeCMOS
        SWI     XOS_Byte
        AND     r0, r2, #&7F            ; top bit is reserved
Jeffrey Lee's avatar
Jeffrey Lee committed
1273
        LDR     r10, =ZeroPage
Neil Turton's avatar
Neil Turton committed
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
        LDR     r10, [r10, #Page_Size]
        MUL     r0, r10, r0
        BL      MassageScreenSize       ; adjust for min and max or default values
        Pull    "r1, r2, lr"
        ExitSWIHandler

; ReadSysInfo(1) - returns configured mode/wimpmode in r0
;                          configured monitortype in r1
;                          configured sync in r2
;                          (all de-autofied)

10
        Push    "r3-r5, lr"
        BL      Read_Configd_Sync
        MOV     r2, r0
Jeffrey Lee's avatar
Jeffrey Lee committed
1289
        LDR     r1, =ZeroPage+VduDriverWorkSpace+CurrentMonitorType      ; read current monitortype
Neil Turton's avatar
Neil Turton committed
1290
        LDR     r1, [r1]
ROOL's avatar
ROOL committed
1291
        TEQ     r1, #MonitorTypeEDID :SHR: MonitorTypeShift              ; equate EDID=auto in this context
ROOL's avatar
ROOL committed
1292
        MOVEQ   r1, #-1
Neil Turton's avatar
Neil Turton committed
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
        BL      Read_Configd_Mode
        CMP     r0, #-1                         ; if none of the three are auto, don't bother with translation
        CMPNE   r1, #-1
        CMPNE   r2, #-1
        BNE     %FT15
        BL      TranslateMonitorLeadType        ; issue service or work it out ourselves
        CMP     r0, #-1                         ; if mode auto
        MOVEQ   r0, r3                          ; then replace with default
        CMP     r1, #-1                         ; if monitortype auto
        MOVEQ   r1, r4                          ; then replace with default
        CMP     r2, #-1                         ; if sync auto
        MOVEQ   r2, r5                          ; then replace with default
15
        Pull    "r3-r5, lr"
        ExitSWIHandler

; ReadSysInfo(2)
;
; in:   r0 = 2
;
; out:  r0 = hardware configuration word 0
;               bits 0-7 = special functions chip type
;                               0 => none
;                               1 => IOEB
;               bits 8-15 = I/O control chip type
;                               0 => IOC
;                               1 => IOMD
1320
;                             255 => none
Neil Turton's avatar
Neil Turton committed
1321 1322 1323
;               bits 16-23 = memory control chip type
;                               0 => MEMC1/MEMC1a
;                               1 => IOMD
1324
;                             255 => none
Neil Turton's avatar
Neil Turton committed
1325 1326 1327
;               bits 24-31 = video control chip type
;                               0 => VIDC1a
;                               1 => VIDC20
1328
;                             255 => none
Neil Turton's avatar
Neil Turton committed
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
;       r1 = hardware configuration word 1
;               bits 0-7 = I/O chip type
;                               0 => absent
;                               1 => 82C710/711 or SMC'665 or similar
;               bits 8-31 reserved (set to 0)
;       r2 = hardware configuration word 2
;               bits 0-7 = LCD controller type
;                               0 => absent
;                               1 => present (type 1) eg A4 portable
;                               2 => present (type 2) eg Stork portable
1339
;               bits 8-15 = IOMD variant (when marked as present in word 0)
Neil Turton's avatar
Neil Turton committed
1340 1341
;                               0 => IOMD
;                               1 => IOMDL ie ARM7500 (Morris)
1342
;               bits 16-23 = VIDC20 variant (when marked as present in word 0)
Neil Turton's avatar
Neil Turton committed
1343 1344
;                               0 => VIDC20
;                               1 => VIDC2L ie ARM7500 (Morris)
1345 1346 1347 1348 1349 1350
;               bits 24-31 = miscellaneous flags
;                      bit 24   0 => IIC bus slow (100kHz)
;                               1 => IIC bus fast (400kHz)
;                      bit 25   0 => keep I/O clocks running during idle
;                               1 => stop I/O clocks during idle
;                      bits 26-31 reserved (set to 0)
Neil Turton's avatar
Neil Turton committed
1351 1352 1353
;       r3 = word 0 of unique machine ID, or 0 if unavailable
;       r4 = word 1 of unique machine ID, or 0 if unavailable

Kevin Bracey's avatar
Kevin Bracey committed
1354 1355 1356 1357 1358 1359 1360 1361
20
        Push    "r9,r14"
        AddressHAL
        SUB     sp, sp, #12
        ADD     a1, sp, #0
        ADD     a2, sp, #4
        ADD     a3, sp, #8
        CallHAL HAL_HardwareInfo
Jeffrey Lee's avatar
Jeffrey Lee committed
1362
        LDR     r12, =ZeroPage
Kevin Bracey's avatar
Kevin Bracey committed
1363 1364
        LDR     r3, [r12, #RawMachineID+0]
        LDR     r4, [r12, #RawMachineID+4]
Kevin Bracey's avatar
Kevin Bracey committed
1365 1366 1367 1368
        MOV     r3, r3, LSR #8                  ; lose first 8 bits
        ORR     r3, r3, r4, LSL #24             ; and put bits 0..7 of r3 into bits 24..31 of r2
        MOV     r4, r4, LSL #8                  ; lose CRC bits
        MOV     r4, r4, LSR #16                 ; and move the rest down to the bottom
Kevin Bracey's avatar
Kevin Bracey committed
1369 1370
        Pull    "r0-r2,r9,r14"
        ExitSWIHandler
Neil Turton's avatar
Neil Turton committed
1371 1372 1373 1374 1375

; ReadSysInfo(3)
;
; in:   r0 = 3
;
1376 1377 1378 1379 1380 1381 1382 1383
; out:  r0 = I/O chip base features mask                710     711     665     669     UMC669
;               Bits 0..3   Base IDE type               1       1       1       1       1
;               Bits 4..7   Base FDC type               1       1       1       1       1
;               Bits 8..11  Base parallel type          1       1       1       1       1
;               Bits 12..15 Base 1st serial type        1       1       1       1       1
;               Bits 16..19 Base 2nd serial type        0       1       1       1       1
;               Bits 20..23 Base Config type            1       2       3       4       5
;               Bits 24..31 Reserved                    0       0       0       0       0
Neil Turton's avatar
Neil Turton committed
1384
;
1385 1386 1387 1388 1389 1390 1391 1392
;       r1 = I/O chip extra features mask               710     711     665     669     UMC669
;               Bits 0..3   IDE extra features          0       0       0       0       0
;               Bits 4..7   FDC extra features          0       0       0       0       0
;               Bits 8..11  parallel extra features     0       0       1       1       1
;               Bits 12..15 1st serial extra features   0       0       1       1       1
;               Bits 16..19 2nd serial extra features   0       0       1       1       1
;               Bits 20..23 config extra features       0       0       0       0       0
;               Bits 24..31 Reserved                    0       0       0       0       0
Neil Turton's avatar
Neil Turton committed
1393 1394 1395 1396 1397
;
;       r2-r4 undefined (reserved for future expansion)
;

30
Kevin Bracey's avatar
Kevin Bracey committed
1398 1399 1400 1401 1402 1403 1404 1405
        Push    "r9,r14"
        AddressHAL
        SUB     sp, sp, #8
        ADD     a1, sp, #0
        ADD     a2, sp, #4
        CallHAL HAL_SuperIOInfo
        Pull    "a1,a2,r9,r14"
        ExitSWIHandler
Neil Turton's avatar
Neil Turton committed
1406

Kevin Bracey's avatar
Kevin Bracey committed
1407
; ReadSysInfo(4)
Neil Turton's avatar
Neil Turton committed
1408 1409 1410
;
; On entry:       r0 = 4 (reason code)
;
Kevin Bracey's avatar
Kevin Bracey committed
1411 1412
; On exit:        r0 = LS32bits of Ethernet Network Address (or 0)
;                 r1 = MS16bits of Ethernet Network Address (or 0)
Neil Turton's avatar
Neil Turton committed
1413 1414 1415 1416 1417 1418
;
; Use:            Code loaded from the dedicated Network Expansion Card or
;                 from a normal Expansion Card should use the value returned
;                 by this call in preference to a locally provided value.

40
1419 1420 1421 1422 1423 1424 1425
        Push    "r2-r3,r9,r14"
        AddressHAL
        MOV     r0, #0
        CallHAL HAL_ExtMachineID
        Pull    "r2-r3,r9,r14"
        TEQ     r0, #0
        BNE     ExitNoEthernetAddress                   ; Extended machine ID is implemented - don't attempt to extract a MAC from RawMachineID, it's just a hash of the extended ID
Jeffrey Lee's avatar
Jeffrey Lee committed
1426
        LDR     r0, =ZeroPage
Neil Turton's avatar
Neil Turton committed
1427
        LDRB    r1, [ r0, #RawMachineID ]               ; The family byte
Kevin Bracey's avatar
Kevin Bracey committed
1428
        TEQ     r1, #&81                                ; Excellent,a custom part - we'll use it
Neil Turton's avatar
Neil Turton committed
1429 1430 1431 1432
        BNE     ExitNoEthernetAddress
        LDR     r1, [ r0, #RawMachineID+4 ]             ; Acorn's ID and part#
        BIC     r1, r1, #&FF000000                      ; Remove the CRC
        LDR     r0, =&0050A4                            ; Acorn's ID is &005
Kevin Bracey's avatar
Kevin Bracey committed
1433
        TEQ     r1, r0                                  ; Is this an Acorn part?
Jeffrey Lee's avatar
Jeffrey Lee committed
1434
        LDR     r0, =ZeroPage
Kevin Bracey's avatar
Kevin Bracey committed
1435
        BNE     %FT45
Neil Turton's avatar
Neil Turton committed
1436 1437
        LDR     r0, [ r0, #RawMachineID ]
        MOV     r0, r0, LSR #8                          ; Lose family byte
Kevin Bracey's avatar
Kevin Bracey committed
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
        LDR     r1, =&0000A4100000
        ADD     r0, r1, r0                              ; Add Acorn base Ethernet address to number from Dallas
        MOV     r1, #0                                  ; Top 16 bits are zero in Acorn's MAC address allocation
        ExitSWIHandler
45
        MOV     r1, r1, LSR #8                          ; It's unique,but not an Acorn part - extract MAC address verbatim
        Push    "r2"
        LDR     r2, [ r0, #RawMachineID ]
        MOV     r2, r2, LSR #8
        LDRB    r0, [r0, #RawMachineID+4]
        ORR     r0, r2, r0, LSL#24
        Pull    "r2"
Neil Turton's avatar
Neil Turton committed
1450 1451 1452 1453 1454 1455 1456
        ExitSWIHandler

ExitNoEthernetAddress
        MOV     r0, #0
        MOV     r1, #0
        ExitSWIHandler

Kevin Bracey's avatar
Kevin Bracey committed
1457
; ReadSysInfo(5)
Neil Turton's avatar
Neil Turton committed
1458 1459 1460
;
; On entry:       r0 = 5 (reason code)
;
Kevin Bracey's avatar
Kevin Bracey committed
1461 1462
; On exit:        r0 = LSW of Raw data from unique id chip
;                 r1 = MSW of Raw data from unique id chip
Neil Turton's avatar
Neil Turton committed
1463 1464

50
Jeffrey Lee's avatar
Jeffrey Lee committed
1465
        LDR     r0, =ZeroPage
Neil Turton's avatar
Neil Turton committed
1466 1467 1468 1469
        LDR     r1, [r0, #RawMachineID+4]
        LDR     r0, [r0, #RawMachineID+0]
        ExitSWIHandler

Kevin Bracey's avatar
Kevin Bracey committed
1470
; ReadSysInfo(6) - read kernel values (Acorn use only; eg. SoftLoad, ROMPatch)
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
;
; On entry:       r0 =  6 (reason code)
;                 r1 -> input block, 1 word per entry, giving number of value required, terminated by -1
;           OR:   r1 =  0 if just 1 value is required, and this is to beturned in r2
;                 r2 -> output block, 1 word per entry, will be filled in on output
;           OR:   r2 =  number of single value required, if r1 = 0
;
; On exit:
;   if r1 entry != 0:
;         r0,r1,r2 preserved
;         output block filled in, filled in value(s) set to 0 if unrecognised/no longer meaningful value(s)
;   if r1 entry = 0:
;         r0,r1 preserved
;         r2 = single value required, or set to 0 if if unrecognised/no longer meaningful value
;
;  valid value numbers available - see table below
;

60
1490
        Push    "r0-r4"
1491
        SUB     sp,sp,#8
1492 1493
        ADR     r3,osri6_table
        CMP     r1,#0
1494 1495 1496 1497
        MOVEQ   r4,#-1
        STMEQIA sp,{r2,r4} ; Set up single-entry list on stack
        MOVEQ   r1,sp      ; r1 -> input list
        ADDEQ   r2,sp,#8+8 ; r2 -> stacked R2 for result
1498
62
1499 1500
        LDR     r4,[r1],#4
        CMP     r4,#-1
1501
        BEQ     %FT66
1502 1503
        CMP     r4,#osri6_maxvalue
        LDRLS   r0,[r3,r4,LSL #2]
1504
        MOVHI   r0,#0
1505 1506 1507 1508 1509 1510
    [ LongDesc :LAND: ShortDesc
        ; Zero the ShortDesc page table pointers if LongDesc is in use
        TEQ     r4,#OSRSI6_L1PT
        TEQNE   r4,#OSRSI6_L2PT
        BEQ     %FT63
    ]
1511 1512 1513 1514 1515 1516 1517 1518 1519
        ; Fix up the DevicesEnd values
        TEQ     r4,#OSRSI6_Danger_DevicesEnd
        TEQNE   r4,#OSRSI6_DevicesEnd
        STRNE   r0,[r2],#4
        BNE     %BT62
        LDR     r4,=ZeroPage
        LDR     r4,[r4,#IRQMax]
        ADD     r0,r0,r4,LSL #3
        ADD     r0,r0,r4,LSL #2
1520 1521
        STR     r0,[r2],#4
        B       %BT62
1522 1523 1524 1525 1526 1527 1528
 [ LongDesc :LAND: ShortDesc
63
        PTWhich r4
        MOVNE   r0,#0
        STR     r0,[r2],#4
        B       %BT62
 ]
1529
66
1530
        ADD     sp,sp,#8
1531
        Pull    "r0-r4"
1532 1533 1534
        ExitSWIHandler

osri6_table
1535 1536
    DCD  ZeroPage+CamEntriesPointer                   ;0
    DCD  ZeroPage+MaxCamEntry                         ;1
1537
    DCD  PageFlags_Unavailable                        ;2
1538
    DCD  ZeroPage+PhysRamTable                        ;3
1539
    DCD  0                                            ;4 (was ARMA_Cleaner_flipflop)
1540 1541 1542 1543 1544 1545 1546
    DCD  ZeroPage+TickNodeChain                       ;5
    DCD  ZeroPage+ROMModuleChain                      ;6
    DCD  ZeroPage+DAList                              ;7
    DCD  ZeroPage+AppSpaceDANode                      ;8
    DCD  ZeroPage+Module_List                         ;9
    DCD  ZeroPage+ModuleSHT_Entries                   ;10
    DCD  ZeroPage+ModuleSWI_HashTab                   ;11
1547
    DCD  0                                            ;12 (was IOSystemType)
1548
  [ ShortDesc
1549 1550
    DCD  L1PT                                         ;13
    DCD  L2PT                                         ;14
1551 1552 1553
  |
    DCD  0
    DCD  0
Jeffrey Lee's avatar
Jeffrey Lee committed
1554
  ]
1555 1556 1557
    DCD  UNDSTK                                       ;15
    DCD  SVCSTK                                       ;16
    DCD  SysHeapStart                                 ;17
1558 1559 1560 1561 1562 1563 1564 1565
    ; **DANGER** - this block conflicts with ROL's allocations
    ; ROL use:
    ; 18 = kernel messagetrans block
    ; 19 = error semaphore
    ; 20 = OS_PrettyPrint dictionary
    ; 21 = Timer 0 latch value
    ; 22 = FastTickerV counts per second
    ; 23 = Vector claimants table
1566 1567
    DCD  JTABLE-SWIRelocation                         ;18 - relocated base of OS SWI despatch table
    DCD  DefaultIRQ1V+(Devices-DefaultIRQ1Vcode)      ;19 - relocated base of IRQ device head nodes
1568
    DCD  DefaultIRQ1V+(Devices-DefaultIRQ1Vcode)      ;20 - relocated end of IRQ device head nodes. NOTE: Gets fixed up when read
1569 1570
    DCD  IRQSTK                                       ;21 - top of the IRQ stack
    DCD  SoundWorkSpace                               ;22 - workspace (8K) and buffers (2*4K)
1571
    DCD  ZeroPage+IRQsema                             ;23 - the address of the IRQ semaphore
1572 1573 1574 1575 1576 1577

    ; ROL compatable:
    DCD  NVECTORS                                     ;24 - Number of vectors supported
    DCD  IRQSTK                                       ;25 - top of the IRQ stack
    DCD  JTABLE-SWIRelocation                         ;26 - relocated base of OS SWI despatch table
    DCD  SLVK                                         ;27 - Address of branch back to OS after SWIs
1578
    %    (256-(.-osri6_table))
1579 1580 1581
    ; Use 64+ for a repeat of the danger zone, and our new allocations
    DCD  JTABLE-SWIRelocation                         ;64 - relocated base of OS SWI despatch table
    DCD  DefaultIRQ1V+(Devices-DefaultIRQ1Vcode)      ;65 - relocated base of IRQ device head nodes
1582
    DCD  DefaultIRQ1V+(Devices-DefaultIRQ1Vcode)      ;66 - relocated end of IRQ device head nodes. NOTE: Gets fixed up when read
1583 1584 1585
    DCD  IRQSTK                                       ;67 - top of the IRQ stack
    DCD  SoundWorkSpace                               ;68 - workspace (8K) and buffers (2*4K)
    DCD  ZeroPage+IRQsema                             ;69 - the address of the IRQ semaphore
1586
    ; New allocations
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
    DCD  ZeroPage+DomainId                            ;70 - current Wimp task handle
    DCD  ZeroPage+OsbyteVars-&A6                      ;71 - OS_Byte vars (previously available via OS_Byte &A6/VarStart)
    DCD  ZeroPage+VduDriverWorkSpace+FgEcfOraEor      ;72
    DCD  ZeroPage+VduDriverWorkSpace+BgEcfOraEor      ;73
    DCD  DebuggerSpace                                ;74
    DCD  DebuggerSpace_Size                           ;75
    DCD  ZeroPage+CannotReset                         ;76
    DCD  ZeroPage+MetroGnome                          ;77 - OS_ReadMonotonicTime
    DCD  ZeroPage+CLibCounter                         ;78
    DCD  ZeroPage+RISCOSLibWord                       ;79
    DCD  ZeroPage+CLibWord                            ;80
    DCD  ZeroPage+FPEAnchor                           ;81
1599
    DCD  ZeroPage+ESC_Status                          ;82
1600 1601
    DCD  ZeroPage+VduDriverWorkSpace+ECFYOffset       ;83
    DCD  ZeroPage+VduDriverWorkSpace+ECFShift         ;84
1602 1603
    DCD  ZeroPage+VecPtrTab                           ;85
    DCD  NVECTORS                                     ;86
1604
    DCD  1                                            ;87 CAM format: 0 = 8 bytes/entry, 1 = 16 bytes/entry
1605
    DCD  ABTSTK                                       ;88
1606
    DCD  1                                            ;89 PhysRamTable format: 0 = addresses are in byte units, 1 = addresses are in 4KB units
1607
osri6_maxvalue * (.-4-osri6_table) :SHR: 2
1608 1609


Kevin Bracey's avatar
Kevin Bracey committed
1610 1611
; ReadSysInfo(7)  - read 32-bit Abort information for last unexpected abort
;                      (prefetch or data)
1612
;
Jeffrey Lee's avatar
Jeffrey Lee committed
1613
; On entry:       r0 = 7 (reason code)
1614 1615 1616 1617 1618 1619
;
; On exit:        r1 = 32-bit PC for last abort
;                 r2 = 32-bit PSR for last abort
;                 r3 = fault address for last abort (same as PC for prefetch abort)
;
70
Jeffrey Lee's avatar
Jeffrey Lee committed
1620 1621
        LDR     r1, =ZeroPage+Abort32_dumparea
        LDMIA   r1, {r1-r3}
1622 1623
        ExitSWIHandler

Kevin Bracey's avatar
Kevin Bracey committed
1624
; ReadSysInfo(8) - Returns summary information on host platform.
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636
;
; On entry:
;    r0 = 8 (reason code 8)
;
; On exit:
;    r0 = platform class
;         currently defined classes are:
;            0 = unspecified platform (r1,r2 will be 0)
;            1 = Medusa   (currently returned for Risc PC only)
;            2 = Morris   (currently returned for A7000 only)
;            3 = Morris+  (currently returned for A7000+ only)
;            4 = Phoebe   (currently returned for Risc PC 2 only)
Kevin Bracey's avatar
Kevin Bracey committed
1637
;            5 = HAL      (returned for machines running a HAL)
1638 1639 1640
;            6 = VirtualRPC
;            7 = A9Home
;            16 = Pyromaniac
1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
;            all other values currently reserved
;    r1 = 32 additional platform specifier flags (if defined)
;         bits 0..31 = value of flags 0..31 if defined, 0 if undefined
;    r2 = defined status of the 32 flags in r1
;         bits 0..31 = status of flags 0..31
;                      0 = flag is undefined in this OS version
;                      1 = flag is defined in this OS version
;
; The current flag definitions for r1 (1=supported, 0=unsupported) are :
;
;     0     = Podule expansion card(s)
;     1     = PCI expansion card(s)
;     2     = additional processor(s)
1654
;     3     = software power off
1655
;     4     = OS in RAM, else executing in ROM
1656 1657 1658
;     5     = OS uses rotated loads          } If both clear and flagged as
;     6     = OS uses unaligned loads/stores } defined, OS makes no unaligned accesses
;     7..31 reserved (currently undefined)
1659 1660
;
80
1661 1662 1663 1664 1665 1666 1667
        Push    "r9,r14"
        AddressHAL
        SUB     sp, sp, #8
        ADD     a2, sp, #0
        ADD     a3, sp, #4
        CallHAL HAL_PlatformInfo
        Pull    "a2,a3,r9,r14"
1668
        MOV     r0, #5
1669 1670 1671 1672 1673 1674 1675 1676
    [ :LNOT: NoUnaligned
      [ :LNOT: NoARMv6
        ORR     r1, r1, #1:SHL:6 ; ARMv6+
      ELIF :LNOT: SupportARMv6
        ORR     r1, r1, #1:SHL:5 ; <=ARMv5
      ]
    ]
        ORR     r2, r2, #3:SHL:5
1677
        ExitSWIHandler
1678

Kevin Bracey's avatar
Kevin Bracey committed
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
; OS_ReadSysInfo 9 - Read ROM info
;
; On entry:
;    r0 = 9 (reason code 9)
;    r1 = item number to return
;
; On exit:
;    r0 = pointer to requested string (NULL terminated) or NULL if it wasn't found
;
; Currently defined item numbers are:
;
;    0   = OS name
;    1   = Part number
;    2   = Build date
;    3   = Dealer name
;    4   = User name
;    5   = User address
1696 1697
;    6   = Printable OS description
;    7   = Hardware platform
Kevin Bracey's avatar
Kevin Bracey committed
1698 1699 1700

90
        CMP     R1, #0
1701 1702
        CMPNE   R1, #6
        ADREQ   R0, RSI9_OSname     ; The OS name or description
Kevin Bracey's avatar
Kevin Bracey committed
1703
        BEQ     %FT95
1704
        CMP     R1, #2              ; The build date (dynamically generated)
1705 1706
        BEQ     %FT92
        CMP     R1, #7              ; The hardware platform
Kevin Bracey's avatar
Kevin Bracey committed
1707
        MOVNE   R0, #0              ; Other ones are unimplemented
1708
        BNE     %FT95
1709 1710 1711 1712 1713 1714 1715 1716

        Push    "r1-r3,r9,lr"
        AddressHAL
        MOV     a1,#0               ; Return NULL if HAL doesn't implement it
        CallHAL HAL_PlatformName
        Pull    "r1-r3,r9,lr"
        B       %FT95
92
1717 1718 1719
        LDR     R0, =ROMBuildDate
        LDRB    R1, [R0]
        CMP     R1, #0
1720 1721
        MOVNE   R1, #2              ; Restore R1
        BNE     %FT95
1722
        ; Build date string hasn't been generated yet. Generate it.
1723
        Push    "r0-r3,lr"
1724
        MOV     R0, #ExtROMFooter_BuildDate
1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
        BL      ExtendedROMFooter_FindTag
        CMP     R0, #0              ; Found it?
        STREQ   R0, [R13]
        BEQ     %FT93
        ; For compatability, make this string match the same format as the old
        ; string. Conveniently, this matches the format string used by OS_Word
        ; 14
        LDR     R1, [R13]
        MOV     R2, #?ROMBuildDate
        ADRL    R3, TimeFormat
        SWI     XOS_ConvertDateAndTime
        MOVVS   R0, #0
        STRVS   R0, [R13]
93
1739
        Pull    "r0-r3,lr"
Kevin Bracey's avatar
Kevin Bracey committed
1740 1741 1742
95
        ExitSWIHandler

1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
; OS_ReadSysInfo 11 - Read debug information
;
; On entry:
;    r0 = 11 (reason code 11)
;
; On exit:
;    r0 = pointer to function for debug character output
;    r1 = pointer to function for debug character input
;

110
        ; Check if both HAL_DebugTX and HAL_DebugRX are available
        Push    "r8-r9,r14"
1756
        MOV     R8, #OSHW_LookupRoutine
1757 1758
        MOV     R9, #EntryNo_HAL_DebugTX
        SWI     XOS_Hardware
1759
        MOVVC   R8, #OSHW_LookupRoutine
1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
        MOVVC   R9, #EntryNo_HAL_DebugRX
        SWIVC   XOS_Hardware
        Pull    "r8-r9,r14"
        BVS     ReadSysInfo_InvalidReason
        ADR     R0, RSI_DebugTX
        ADR     R1, RSI_DebugRX
        ExitSWIHandler

RSI_DebugTX
        ; In:
        ; R0 = char
        ; Privileged mode
        ; Out:
        ; R0-R3, PSR corrupt
        Push    "r9,r12,r14"
        AddressHAL
        CallHAL HAL_DebugTX
        Pull    "r9,r12,pc"

RSI_DebugRX
        ; In:
        ; Privileged mode
        ; Out:
        ; R0=char read, or -1
        ; R1-R3, PSR corrupt
        Push    "r9,r12,r14"
        AddressHAL
        CallHAL HAL_DebugRX
        Pull    "r9,r12,pc"

; OS_ReadSysInfo 12 - Read extended machine ID
;
; On entry:
;    r0 = 12 (reason code 12)
;    r1 = Pointer to word-aligned buffer, or 0 to read size
;
; On exit:
;    r0 = Size of extended machine ID, or 0 if none/corrupt
;    Buffer in R1 filled, if applicable
;

120
        Push    "r1-r3,r9,r14"
1803 1804
        AddressHAL
        MOV     R0, R1 ; HAL takes the buffer pointer in R0
1805 1806 1807 1808
        CallHAL HAL_ExtMachineID
        Pull    "r1-r3,r9,r14"
        ExitSWIHandler

1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841
; OS_ReadSysInfo 13 - Validate key handler
;
; On entry:
;    r0 = 13 (reason code 13)
;    r1 = key handler address (0 to just return valid flags)
;
; On exit:
;    r0 = Mask of supported key handler flags
;         Or pointer to error block
;

130
        LDR     R0, =KeyHandler_Flag_Wide
        CMP     R1, #0
        ExitSWIHandler EQ
        Push    "R2"
        LDR     R2, [R1, #KeyHandler_KeyTranSize]
        TST     R2, #KeyHandler_HasFlags
        LDRNE   R2, [R1, #KeyHandler_Flags]
        BICNES  R2, R2, R0
        Pull    "R2"
        ExitSWIHandler EQ
        ADR     R0, ErrorBlock_BadKeyHandler
      [ International
        Push    "lr"
        BL      TranslateError
        Pull    "lr"
      ]
        ORR     lr, lr, #V_bit
        ExitSWIHandler

        MakeErrorBlock BadKeyHandler

1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
; OS_ReadSysInfo 14 - Return IIC bus count
;
; On entry:
;    r0 = 14 (reason code 14)
;
; On exit:
;    r0 = Number of IIC buses (as per HAL_IICBuses)
;

140
        Push    "r1-r3,sb,lr"
        AddressHAL
        CallHAL HAL_IICBuses
        Pull    "r1-r3,sb,lr"
        ExitSWIHandler

1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
; OS_ReadSysInfo 15 - Enumerate extended ROM footer entries
;
; On entry:
;    r0 = 15 (reason code 15)
;    r1 = location to start (from previous call) or 0 to begin
;
; On exit:
;    r1 = data pointer, or 0 if end
;    r2 = entry ID (corrupt if r1 == 0)
;    r3 = entry length (corrupt if r1 == 0)

150
        Push    "lr"
        BL      ExtendedROMFooter_Find
        CMP     r0, #-1
        BEQ     %FT158
        MOV     lr, r0                  ; Footer end
        CMP     r1, #0
        LDREQ   r1, [lr]
        MOVEQ   r1, r1, LSL #16
        SUBEQ   r1, lr, r1, LSR #16     ; Footer start
        LDRNEB  r3, [r1, #-1]
        ADDNE   r1, r1, r3              ; If not starting enumeration, advance by length of previous entry
        CMP     r1, lr
        BEQ     %FT158
        LDRB    r2, [r1], #1
        LDRB    r3, [r1], #1
        B       %FT159
158
        MOV     r1, #0
159
        MOV     r0, #15
        Pull    "lr"
        ExitSWIHandler

1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908
;
; Extended ROM footer functions
;
; These operate on a new tag-based structure located at the end of the ROM
; image. Each entry consists of a one-byte ID, a one-byte length, and then N
; bytes of data. The length byte doesn't count the two initial header bytes.
;
; The end of the list is implicity terminated by a footer word; the footer word
; contains the length of the structure in the low two bytes (minus the length of
; the footer word), and a 16-bit CRC in the top two bytes (again, minus the
; footer word). The footer word will be word-aligned, but everything else is
; assumed to be byte aligned.
;
; Current tags:
;
; 0     ROM build date, stored as 5-byte time (length = 5)
1909 1910
; 1     Compressed ROM softload hint (length = 8). First word is negative
;       checksum of uncompressed image, second word is OS header offset.
1911 1912
; 2     Debug symbols offset (length = 4). Byte offset from the start of the ROM
;       to the debug symbols.
1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
;

ExtendedROMFooter_Find  ROUT
        ; Find the header word for the extended ROM footer. Returns -1 if not found.
        Push    "r1-r4,lr"
        LDR     r4, =ZeroPage
        LDR     r0, [r4, #ExtendedROMFooter]
        CMP     r0, #0
        BNE     %FT10
        ; Examine the end of the ROM image
        ; Footer should be located just before the standard 20 byte footer
        LDR     r2, =ROM+OSROM_ImageSize*1024-24
        LDR     r1, [r2]
        CMP     r1, #-1
        MOVEQ   r0, r1
        BEQ     %FT09
        ; Check CRC
        MOV     r1, r1, LSL #16
        SUB     r1, r2, r1, LSR #16
        MOV     r3, #1
        SWI     XOS_CRC
        MOVVS   r0, #-1
        BVS     %FT09
        LDR     r1, [r2]
        CMP     r0, r1, LSR #16
        MOVNE   r0, #-1
        MOVEQ   r0, r2
09
        STR     r0, [r4, #ExtendedROMFooter]
10
        Pull    "r1-r4,pc"

ExtendedROMFooter_FindTag  ROUT
        ; Find the tag number given in R0.
        ; Returns data pointer in R0 & length in R1 on success.
        ; Returns 0 in R0 (and corrupt R1) for failure.
        Push    "r2-r3,lr"
        MOV     r2, r0
        BL      ExtendedROMFooter_Find
        CMP     r0, #-1
        BEQ     %FT09
        MOV     r3, r0
        LDR     r0, [r0]
        MOV     r0, r0, LSL #16
        SUB     r0, r3, r0, LSR #16
05
        CMP     r0, r3
        BEQ     %FT09
        LDRB    lr, [r0], #1
        LDRB    r1, [r0], #1
        CMP     lr, r2
        BEQ     %FT10
        ADD     r0, r0, r1
        B       %BT05
09
        MOV     r0, #0
10
        Pull    "r2-r3,pc"

Kevin Bracey's avatar
Kevin Bracey committed
1972
RSI9_OSname    = "$SystemName $VString",0
1973

Kevin Bracey's avatar
Kevin Bracey committed
1974
        ALIGN
Neil Turton's avatar
Neil Turton committed
1975 1976 1977
        LTORG

        END