~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm/include/debug/sa1100.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /* arch/arm/include/debug/sa1100.S
  3  *
  4  * Debugging macro include header
  5  *
  6  *  Copyright (C) 1994-1999 Russell King
  7  *  Moved from linux/arch/arm/kernel/debug.S by Ben Dooks
  8 */
  9 
 10 #define UTCR3           0x0c
 11 #define UTDR            0x14
 12 #define UTSR1           0x20
 13 #define UTCR3_TXE       0x00000002      /* Transmit Enable                 */
 14 #define UTSR1_TBY       0x00000001      /* Transmitter BusY (read)         */
 15 #define UTSR1_TNF       0x00000004      /* Transmit FIFO Not Full (read)   */
 16 
 17                 .macro  addruart, rp, rv, tmp
 18                 mrc     p15, 0, \rp, c1, c0
 19                 tst     \rp, #1                 @ MMU enabled?
 20                 moveq   \rp, #0x80000000        @ physical base address
 21                 movne   \rp, #0xf8000000        @ virtual address
 22 
 23                 @ We probe for the active serial port here, coherently with
 24                 @ the comment in arch/arm/mach-sa1100/include/mach/uncompress.h.
 25                 @ We assume r1 can be clobbered.
 26 
 27                 @ see if Ser3 is active
 28                 add     \rp, \rp, #0x00050000
 29                 ldr     \rv, [\rp, #UTCR3]
 30                 tst     \rv, #UTCR3_TXE
 31 
 32                 @ if Ser3 is inactive, then try Ser1
 33                 addeq   \rp, \rp, #(0x00010000 - 0x00050000)
 34                 ldreq   \rv, [\rp, #UTCR3]
 35                 tsteq   \rv, #UTCR3_TXE
 36 
 37                 @ if Ser1 is inactive, then try Ser2
 38                 addeq   \rp, \rp, #(0x00030000 - 0x00010000)
 39                 ldreq   \rv, [\rp, #UTCR3]
 40                 tsteq   \rv, #UTCR3_TXE
 41 
 42                 @ clear top bits, and generate both phys and virt addresses
 43                 lsl     \rp, \rp, #8
 44                 lsr     \rp, \rp, #8
 45                 orr     \rv, \rp, #0xf8000000   @ virtual
 46                 orr     \rp, \rp, #0x80000000   @ physical
 47 
 48                 .endm
 49 
 50                 .macro  senduart,rd,rx
 51                 str     \rd, [\rx, #UTDR]
 52                 .endm
 53 
 54                 .macro  waituartcts,rd,rx
 55                 .endm
 56 
 57                 .macro  waituarttxrdy,rd,rx
 58 1001:           ldr     \rd, [\rx, #UTSR1]
 59                 tst     \rd, #UTSR1_TNF
 60                 beq     1001b
 61                 .endm
 62 
 63                 .macro  busyuart,rd,rx
 64 1001:           ldr     \rd, [\rx, #UTSR1]
 65                 tst     \rd, #UTSR1_TBY
 66                 bne     1001b
 67                 .endm

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php