2 * U-boot - blackfin_local.h
4 * Copyright (c) 2005-2007 Analog Devices Inc.
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25 #ifndef __BLACKFIN_LOCAL_H__
26 #define __BLACKFIN_LOCAL_H__
28 #define LO(con32) ((con32) & 0xFFFF)
29 #define lo(con32) ((con32) & 0xFFFF)
30 #define HI(con32) (((con32) >> 16) & 0xFFFF)
31 #define hi(con32) (((con32) >> 16) & 0xFFFF)
33 #define OFFSET_(x) (x & 0x0000FFFF)
34 #define MK_BMSK_(x) (1 << x)
36 /* Ideally this should be USEC not MSEC, but the USEC multiplication
37 * likes to overflow 32bit quantities which is all our assembler
38 * currently supports ;(
40 #define USEC_PER_MSEC 1000
41 #define MSEC_PER_SEC 1000
42 #define BFIN_SCLK (100000000)
43 #define SCLK_TO_MSEC(sclk) ((MSEC_PER_SEC * ((sclk) / USEC_PER_MSEC)) / (BFIN_SCLK / USEC_PER_MSEC))
44 #define MSEC_TO_SCLK(msec) ((((BFIN_SCLK / USEC_PER_MSEC) * (msec)) / MSEC_PER_SEC) * USEC_PER_MSEC)
46 #include <asm/linkage.h>
49 # ifdef SHARED_RESOURCES
50 # include <asm/shared_resources.h>
53 # include <linux/types.h>
55 extern u_long get_sclk(void);
57 # define bfin_revid() (*pCHIPID >> 28)
59 extern void blackfin_icache_flush_range(const void *, const void *);
60 extern void blackfin_dcache_flush_range(const void *, const void *);
61 extern void blackfin_dcache_invalidate_range(const void *, const void *);
63 /* Use DMA to move data from on chip to external memory. While this is
64 * required for only L1 instruction (it is not directly readable by the
65 * core via data loads), it isn't a huge performance issue for other
66 * regions (it's probably even faster than core load/stores). However,
67 * the DMA engine does not have access to the L1 scratchpad, and we
68 * cannot use DMA inside of the MMR space.
70 # define addr_bfin_on_chip_mem(addr) \
71 (((unsigned long)(addr) >= 0xef000000 && (unsigned long)addr < SYSMMR_BASE) && \
72 !((unsigned long)(addr) >= L1_SRAM_SCRATCH && \
73 (unsigned long)(addr) < L1_SRAM_SCRATCH_END))
75 # include <asm/system.h>
78 # define NOP_PAD_ANOMALY_05000198 "nop;"
80 # define NOP_PAD_ANOMALY_05000198
83 #define bfin_read8(addr) ({ \
85 __asm__ __volatile__( \
86 NOP_PAD_ANOMALY_05000198 \
93 #define bfin_read16(addr) ({ \
95 __asm__ __volatile__( \
96 NOP_PAD_ANOMALY_05000198 \
103 #define bfin_read32(addr) ({ \
105 __asm__ __volatile__( \
106 NOP_PAD_ANOMALY_05000198 \
113 #define bfin_readPTR(addr) bfin_read32(addr)
115 #define bfin_write8(addr, val) \
116 __asm__ __volatile__( \
117 NOP_PAD_ANOMALY_05000198 \
120 : "a" (addr), "d" (val) \
124 #define bfin_write16(addr, val) \
125 __asm__ __volatile__( \
126 NOP_PAD_ANOMALY_05000198 \
129 : "a" (addr), "d" (val) \
133 #define bfin_write32(addr, val) \
134 __asm__ __volatile__( \
135 NOP_PAD_ANOMALY_05000198 \
138 : "a" (addr), "d" (val) \
142 #define bfin_writePTR(addr, val) bfin_write32(addr, val)
144 /* SSYNC implementation for C file */
145 static inline void SSYNC(void)
148 if (ANOMALY_05000312)
149 __asm__ __volatile__(
157 else if (ANOMALY_05000244)
158 __asm__ __volatile__(
165 __asm__ __volatile__("ssync;");
168 /* CSYNC implementation for C file */
169 static inline void CSYNC(void)
172 if (ANOMALY_05000312)
173 __asm__ __volatile__(
181 else if (ANOMALY_05000244)
182 __asm__ __volatile__(
189 __asm__ __volatile__("csync;");
192 #else /* __ASSEMBLY__ */
194 /* SSYNC & CSYNC implementations for assembly files */
196 #define ssync(x) SSYNC(x)
197 #define csync(x) CSYNC(x)
200 #define SSYNC(scratch) cli scratch; nop; nop; SSYNC; sti scratch;
201 #define CSYNC(scratch) cli scratch; nop; nop; CSYNC; sti scratch;
203 #elif ANOMALY_05000244
204 #define SSYNC(scratch) nop; nop; nop; SSYNC;
205 #define CSYNC(scratch) nop; nop; nop; CSYNC;
208 #define SSYNC(scratch) SSYNC;
209 #define CSYNC(scratch) CSYNC;
211 #endif /* ANOMALY_05000312 & ANOMALY_05000244 handling */
213 #endif /* __ASSEMBLY__ */