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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-sa1100/sleep.S

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /*
  2  * SA11x0 Assembler Sleep/WakeUp Management Routines
  3  *
  4  * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>
  5  *
  6  * This program is free software; you can redistribute it and/or
  7  * modify it under the terms of the GNU General Public License.
  8  *
  9  * History:
 10  *
 11  * 2001-02-06: Cliff Brake         Initial code
 12  *
 13  * 2001-08-29:  Nicolas Pitre   Simplified.
 14  *
 15  * 2002-05-27:  Nicolas Pitre   Revisited, more cleanup and simplification.
 16  *                              Storage is on the stack now.
 17  */
 18 
 19 #include <linux/linkage.h>
 20 #include <asm/assembler.h>
 21 #include <mach/hardware.h>
 22 
 23                 .text
 24 /*
 25  * sa1100_finish_suspend()
 26  *
 27  * Causes sa11x0 to enter sleep state
 28  *
 29  * Must be aligned to a cacheline.
 30  */
 31         .balign 32
 32 ENTRY(sa1100_finish_suspend)
 33         @ disable clock switching
 34         mcr     p15, 0, r1, c15, c2, 2
 35 
 36         ldr     r6, =MDREFR
 37         ldr     r4, [r6]
 38         orr     r4, r4, #MDREFR_K1DB2
 39         ldr     r5, =PPCR
 40 
 41         @ Pre-load __loop_udelay into the I-cache
 42         mov     r0, #1
 43         bl      __loop_udelay
 44         mov     r0, r0
 45 
 46         @ The following must all exist in a single cache line to
 47         @ avoid accessing memory until this sequence is complete,
 48         @ otherwise we occasionally hang.
 49 
 50         @ Adjust memory timing before lowering CPU clock
 51         str     r4, [r6]
 52 
 53         @ delay 90us and set CPU PLL to lowest speed
 54         @ fixes resume problem on high speed SA1110
 55         mov     r0, #90
 56         bl      __loop_udelay
 57         mov     r1, #0
 58         str     r1, [r5]
 59         mov     r0, #90
 60         bl      __loop_udelay
 61 
 62         /*
 63          * SA1110 SDRAM controller workaround.  register values:
 64          *
 65          * r0  = &MSC0
 66          * r1  = &MSC1
 67          * r2  = &MSC2
 68          * r3  = MSC0 value
 69          * r4  = MSC1 value
 70          * r5  = MSC2 value
 71          * r6  = &MDREFR
 72          * r7  = first MDREFR value
 73          * r8  = second MDREFR value
 74          * r9  = &MDCNFG
 75          * r10 = MDCNFG value
 76          * r11 = third MDREFR value
 77          * r12 = &PMCR
 78          * r13 = PMCR value (1)
 79          */
 80 
 81         ldr     r0, =MSC0
 82         ldr     r1, =MSC1
 83         ldr     r2, =MSC2
 84 
 85         ldr     r3, [r0]
 86         bic     r3, r3, #FMsk(MSC_RT)
 87         bic     r3, r3, #FMsk(MSC_RT)<<16
 88 
 89         ldr     r4, [r1]
 90         bic     r4, r4, #FMsk(MSC_RT)
 91         bic     r4, r4, #FMsk(MSC_RT)<<16
 92 
 93         ldr     r5, [r2]
 94         bic     r5, r5, #FMsk(MSC_RT)
 95         bic     r5, r5, #FMsk(MSC_RT)<<16
 96 
 97         ldr     r7, [r6]
 98         bic     r7, r7, #0x0000FF00
 99         bic     r7, r7, #0x000000F0
100         orr     r8, r7, #MDREFR_SLFRSH
101 
102         ldr     r9, =MDCNFG
103         ldr     r10, [r9]
104         bic     r10, r10, #(MDCNFG_DE0+MDCNFG_DE1)
105         bic     r10, r10, #(MDCNFG_DE2+MDCNFG_DE3)
106 
107         bic     r11, r8, #MDREFR_SLFRSH
108         bic     r11, r11, #MDREFR_E1PIN
109 
110         ldr     r12, =PMCR
111 
112         mov     r13, #PMCR_SF
113 
114         b       sa1110_sdram_controller_fix
115 
116         .align 5
117 sa1110_sdram_controller_fix:
118 
119         @ Step 1 clear RT field of all MSCx registers
120         str     r3, [r0]
121         str     r4, [r1]
122         str     r5, [r2]
123 
124         @ Step 2 clear DRI field in MDREFR
125         str     r7, [r6]
126 
127         @ Step 3 set SLFRSH bit in MDREFR
128         str     r8, [r6]
129 
130         @ Step 4 clear DE bis in MDCNFG
131         str     r10, [r9]
132 
133         @ Step 5 clear DRAM refresh control register
134         str     r11, [r6]
135 
136         @ Wow, now the hardware suspend request pins can be used, that makes them functional for
137         @ about 7 ns out of the entire time that the CPU is running!
138 
139         @ Step 6 set force sleep bit in PMCR
140 
141         str     r13, [r12]
142 
143 20:     b       20b                     @ loop waiting for sleep

~ [ 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