1 /* cmode.S: clock mode management
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Woodhouse (dwmw2@infradead.org)
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 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
13 #include <linux/sys.h>
14 #include <linux/linkage.h>
15 #include <asm/setup.h>
16 #include <asm/segment.h>
17 #include <asm/ptrace.h>
18 #include <asm/errno.h>
19 #include <asm/cache.h>
20 #include <asm/spr-regs.h>
22 #define __addr_MASK 0xfeff9820 /* interrupt controller mask */
24 #define __addr_SDRAMC 0xfe000400 /* SDRAM controller regs */
25 #define SDRAMC_DSTS 0x28 /* SDRAM status */
26 #define SDRAMC_DSTS_SSI 0x00000001 /* indicates that the SDRAM is in self-refresh mode */
27 #define SDRAMC_DRCN 0x30 /* SDRAM refresh control */
28 #define SDRAMC_DRCN_SR 0x00000001 /* transition SDRAM into self-refresh mode */
29 #define __addr_CLKC 0xfeff9a00
30 #define CLKC_SWCMODE 0x00000008
31 #define __addr_LEDS 0xe1200004
42 ###############################################################################
45 # - void frv_change_cmode(int cmode)
47 ###############################################################################
48 .globl frv_change_cmode
49 .type frv_change_cmode,@function
66 # Shift argument left by 24 bits to fit in SWCMODE register later.
69 # (1) Set '0' in the PSR.ET bit, and prohibit interrupts.
71 andi gr14,#~PSR_ET,gr3
74 #if 0 // Fujitsu recommend to skip this and will update docs.
75 # (2) Set '0' to all bits of the MASK register of the interrupt
76 # controller, and mask interrupts.
83 # (3) Stop the transfer function of DMAC. Stop all the bus masters
84 # to access SDRAM and the internal resources.
86 # (already done by caller)
88 # (4) Preload a series of following instructions to the instruction
90 li #__cmode_icache_lock_start,gr3
91 li #__cmode_icache_lock_end,gr4
94 addi gr3,#L1_CACHE_BYTES,gr3
98 # Set up addresses in regs for later steps.
99 setlos SDRAMC_DRCN_SR,gr3
106 bra __cmode_icache_lock_start
108 .balign L1_CACHE_BYTES
109 __cmode_icache_lock_start:
111 # (5) Flush the content of all caches by the DCEF instruction.
114 # (6) Execute loading the dummy for SDRAM.
117 # (7) Set '1' to the DRCN.SR bit, and change SDRAM to the
118 # self-refresh mode. Execute the dummy load to all memory
119 # devices set to cacheable on the external bus side in parallel
121 sti gr3,@(gr4,#SDRAMC_DRCN)
123 # (8) Execute memory barrier instruction (MEMBAR).
126 # (9) Read the DSTS register repeatedly until '1' stands in the
128 1: ldi @(gr4,#SDRAMC_DSTS),gr3
129 andicc gr3,#SDRAMC_DSTS_SSI,gr3,icc0
132 # (10) Execute memory barrier instruction (MEMBAR).
136 # (11) Set the value of CMODE that you want to change to
138 sti gr8,@(gr5,#CLKC_SWCMODE)
140 # (12) Set '1' to the CLKC.SWEN bit. In that case, do not change
141 # fields other than SWEN of the CLKC register.
144 # (13) Execute the instruction just after the memory barrier
145 # instruction that executes the self-loop 256 times. (Meanwhile,
146 # the CMODE switch is done.)
149 2: subicc gr7,#1,gr7,icc0
154 # (14) Release the self-refresh of SDRAM.
155 sti gr0,@(gr4,#SDRAMC_DRCN)
158 3: ldi @(gr4,#SDRAMC_DSTS),gr3
159 andicc gr3,#SDRAMC_DSTS_SSI,gr3,icc0
164 4: subicc gr10,#1,gr10,icc0
169 __cmode_icache_lock_end:
171 li #__cmode_icache_lock_start,gr3
172 li #__cmode_icache_lock_end,gr4
175 addi gr3,#L1_CACHE_BYTES,gr3
179 #if 0 // Fujitsu recommend to skip this and will update docs.
180 # (15) Release the interrupt mask setting of the MASK register of
181 # the interrupt controller if necessary.
184 # (16) Set 1' in the PSR.ET bit, and permit interrupt.
189 .size frv_change_cmode, .-frv_change_cmode