source: rtems/c/src/lib/libbsp/sparc/leon3/include/leon.h @ 9f058fb

4.115
Last change on this file since 9f058fb was 9f058fb, checked in by Daniel Cederman <cederman@…>, on 05/08/14 at 15:08:04

bsps/sparc: Change tabs to spaces.

  • Property mode set to 100644
File size: 11.4 KB
Line 
1/**
2 * @file
3 * @ingroup sparc_leon3
4 * @brief LEON3 BSP data types and macros
5 */
6
7/*  leon.h
8 *
9 *  LEON3 BSP data types and macros.
10 *
11 *  COPYRIGHT (c) 1989-1998.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  Modified for LEON3 BSP.
15 *  COPYRIGHT (c) 2004.
16 *  Gaisler Research.
17 *
18 *  The license and distribution terms for this file may be
19 *  found in the file LICENSE in this distribution or at
20 *  http://www.rtems.org/license/LICENSE.
21 */
22
23#ifndef _INCLUDE_LEON_h
24#define _INCLUDE_LEON_h
25
26#include <rtems.h>
27#include <amba.h>
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33#define LEON_INTERRUPT_EXTERNAL_1 5
34
35#ifndef ASM
36/*
37 *  Trap Types for on-chip peripherals
38 *
39 *  Source: Table 8 - Interrupt Trap Type and Default Priority Assignments
40 *
41 *  NOTE: The priority level for each source corresponds to the least
42 *        significant nibble of the trap type.
43 */
44
45#define LEON_TRAP_TYPE( _source ) SPARC_ASYNCHRONOUS_TRAP((_source) + 0x10)
46
47#define LEON_TRAP_SOURCE( _trap ) ((_trap) - 0x10)
48
49#define LEON_INT_TRAP( _trap ) \
50  ( (_trap) >= 0x11 && \
51    (_trap) <= 0x1F )
52
53/* /\* */
54/*  *  This is used to manipulate the on-chip registers. */
55/*  * */
56/*  *  The following symbol must be defined in the linkcmds file and point */
57/*  *  to the correct location. */
58/*  *\/ */
59/* Leon uses dynamic register mapping using amba configuration records */
60/* LEON_Register_Map is obsolete */
61/* extern LEON_Register_Map LEON_REG; */
62
63#endif
64
65/*
66 *  The following defines the bits in Memory Configuration Register 1.
67 */
68
69#define LEON_MEMORY_CONFIGURATION_PROM_SIZE_MASK  0x0003C000
70
71/*
72 *  The following defines the bits in Memory Configuration Register 1.
73 */
74
75#define LEON_MEMORY_CONFIGURATION_RAM_SIZE_MASK  0x00001E00
76
77
78/*
79 *  The following defines the bits in the Timer Control Register.
80 */
81
82#define LEON_REG_TIMER_CONTROL_EN    0x00000001  /* 1 = enable counting */
83                                              /* 0 = hold scalar and counter */
84#define LEON_REG_TIMER_CONTROL_RL    0x00000002  /* 1 = reload at 0 */
85                                              /* 0 = stop at 0 */
86#define LEON_REG_TIMER_CONTROL_LD    0x00000004  /* 1 = load counter */
87                                              /* 0 = no function */
88
89/*
90 *  The following defines the bits in the UART Control Registers.
91 *
92 */
93
94#define LEON_REG_UART_CONTROL_RTD  0x000000FF /* RX/TX data */
95
96/*
97 *  The following defines the bits in the LEON UART Status Registers.
98 */
99
100#define LEON_REG_UART_STATUS_DR   0x00000001 /* Data Ready */
101#define LEON_REG_UART_STATUS_TSE  0x00000002 /* TX Send Register Empty */
102#define LEON_REG_UART_STATUS_THE  0x00000004 /* TX Hold Register Empty */
103#define LEON_REG_UART_STATUS_BR   0x00000008 /* Break Error */
104#define LEON_REG_UART_STATUS_OE   0x00000010 /* RX Overrun Error */
105#define LEON_REG_UART_STATUS_PE   0x00000020 /* RX Parity Error */
106#define LEON_REG_UART_STATUS_FE   0x00000040 /* RX Framing Error */
107#define LEON_REG_UART_STATUS_ERR  0x00000078 /* Error Mask */
108
109/*
110 *  The following defines the bits in the LEON UART Status Registers.
111 */
112
113#define LEON_REG_UART_CTRL_RE     0x00000001 /* Receiver enable */
114#define LEON_REG_UART_CTRL_TE     0x00000002 /* Transmitter enable */
115#define LEON_REG_UART_CTRL_RI     0x00000004 /* Receiver interrupt enable */
116#define LEON_REG_UART_CTRL_TI     0x00000008 /* Transmitter interrupt enable */
117#define LEON_REG_UART_CTRL_PS     0x00000010 /* Parity select */
118#define LEON_REG_UART_CTRL_PE     0x00000020 /* Parity enable */
119#define LEON_REG_UART_CTRL_FL     0x00000040 /* Flow control enable */
120#define LEON_REG_UART_CTRL_LB     0x00000080 /* Loop Back enable */
121
122/* LEON3 Interrupt Controller */
123extern volatile struct irqmp_regs *LEON3_IrqCtrl_Regs;
124/* LEON3 GP Timer */
125extern volatile struct gptimer_regs *LEON3_Timer_Regs;
126
127/* LEON3 CPU Index of boot CPU */
128extern uint32_t LEON3_Cpu_Index;
129
130/* The external IRQ number, -1 if not external interrupts */
131extern int LEON3_IrqCtrl_EIrq;
132
133static __inline__ int bsp_irq_fixup(int irq)
134{
135       int eirq;
136
137       if (LEON3_IrqCtrl_EIrq != 0 && irq == LEON3_IrqCtrl_EIrq) {
138               /* Get interrupt number from IRQ controller */
139               eirq = LEON3_IrqCtrl_Regs->intid[LEON3_Cpu_Index] & 0x1f;
140               if (eirq & 0x10)
141                       irq = eirq;
142       }
143
144       return irq;
145}
146
147/* Macros used for manipulating bits in LEON3 GP Timer Control Register */
148
149#define LEON3_MP_IRQ    14        /* Irq used by shared memory driver */
150
151#define LEON3_IRQMPSTATUS_CPUNR     28
152#define LEON3_IRQMPSTATUS_BROADCAST 27
153
154
155#ifndef ASM
156
157/*
158 *  Macros to manipulate the Interrupt Clear, Interrupt Force, Interrupt Mask,
159 *  and the Interrupt Pending Registers.
160 *
161 *  NOTE: For operations which are not atomic, this code disables interrupts
162 *        to guarantee there are no intervening accesses to the same register.
163 *        The operations which read the register, modify the value and then
164 *        store the result back are vulnerable.
165 */
166
167extern rtems_interrupt_lock LEON3_IrqCtrl_Lock;
168
169#define LEON3_IRQCTRL_ACQUIRE( _lock_context ) \
170  rtems_interrupt_lock_acquire( &LEON3_IrqCtrl_Lock, _lock_context )
171
172#define LEON3_IRQCTRL_RELEASE( _lock_context ) \
173  rtems_interrupt_lock_release( &LEON3_IrqCtrl_Lock, _lock_context )
174
175#define LEON_Clear_interrupt( _source ) \
176  do { \
177    LEON3_IrqCtrl_Regs->iclear = (1 << (_source)); \
178  } while (0)
179
180#define LEON_Force_interrupt( _source ) \
181  do { \
182    LEON3_IrqCtrl_Regs->iforce = (1 << (_source)); \
183  } while (0)
184
185#define LEON_Is_interrupt_pending( _source ) \
186  (LEON3_IrqCtrl_Regs->ipend & (1 << (_source)))
187
188#define LEON_Is_interrupt_masked( _source ) \
189  do {\
190     (LEON3_IrqCtrl_Regs->mask[LEON3_Cpu_Index] & (1 << (_source))); \
191   } while (0)
192
193#define LEON_Mask_interrupt( _source ) \
194  do { \
195    rtems_interrupt_lock_context _lock_context; \
196    LEON3_IRQCTRL_ACQUIRE( &_lock_context ); \
197     LEON3_IrqCtrl_Regs->mask[LEON3_Cpu_Index]  &= ~(1 << (_source)); \
198    LEON3_IRQCTRL_RELEASE( &_lock_context ); \
199  } while (0)
200
201#define LEON_Unmask_interrupt( _source ) \
202  do { \
203    rtems_interrupt_lock_context _lock_context; \
204    LEON3_IRQCTRL_ACQUIRE( &_lock_context ); \
205    LEON3_IrqCtrl_Regs->mask[LEON3_Cpu_Index]  |= (1 << (_source)); \
206    LEON3_IRQCTRL_RELEASE( &_lock_context ); \
207  } while (0)
208
209#define LEON_Disable_interrupt( _source, _previous ) \
210  do { \
211    rtems_interrupt_lock_context _lock_context; \
212    uint32_t _mask = 1 << (_source); \
213    LEON3_IRQCTRL_ACQUIRE( &_lock_context ); \
214     (_previous) = LEON3_IrqCtrl_Regs->mask[LEON3_Cpu_Index]; \
215     LEON3_IrqCtrl_Regs->mask[LEON3_Cpu_Index] = _previous & ~_mask; \
216    LEON3_IRQCTRL_RELEASE( &_lock_context ); \
217    (_previous) &= _mask; \
218  } while (0)
219
220#define LEON_Restore_interrupt( _source, _previous ) \
221  do { \
222    rtems_interrupt_lock_context _lock_context; \
223    uint32_t _mask = 1 << (_source); \
224    LEON3_IRQCTRL_ACQUIRE( &_lock_context ); \
225      LEON3_IrqCtrl_Regs->mask[LEON3_Cpu_Index] = \
226        (LEON3_IrqCtrl_Regs->mask[LEON3_Cpu_Index] & ~_mask) | (_previous); \
227    LEON3_IRQCTRL_RELEASE( &_lock_context ); \
228  } while (0)
229
230/* Make all SPARC BSPs have common macros for interrupt handling */
231#define BSP_Clear_interrupt(_source) LEON_Clear_interrupt(_source)
232#define BSP_Force_interrupt(_source) LEON_Force_interrupt(_source)
233#define BSP_Is_interrupt_pending(_source) LEON_Is_interrupt_pending(_source)
234#define BSP_Is_interrupt_masked(_source) LEON_Is_interrupt_masked(_source)
235#define BSP_Unmask_interrupt(_source) LEON_Unmask_interrupt(_source)
236#define BSP_Mask_interrupt(_source) LEON_Mask_interrupt(_source)
237#define BSP_Disable_interrupt(_source, _previous) \
238        LEON_Disable_interrupt(_source, _prev)
239#define BSP_Restore_interrupt(_source, _previous) \
240        LEON_Restore_interrupt(_source, _previous)
241
242/*
243 *  Each timer control register is organized as follows:
244 *
245 *    D0 - Enable
246 *          1 = enable counting
247 *          0 = hold scaler and counter
248 *
249 *    D1 - Counter Reload
250 *          1 = reload counter at zero and restart
251 *          0 = stop counter at zero
252 *
253 *    D2 - Counter Load
254 *          1 = load counter with preset value
255 *          0 = no function
256 *
257 */
258
259#define LEON_REG_TIMER_COUNTER_RELOAD_AT_ZERO     0x00000002
260#define LEON_REG_TIMER_COUNTER_STOP_AT_ZERO       0x00000000
261
262#define LEON_REG_TIMER_COUNTER_LOAD_COUNTER       0x00000004
263
264#define LEON_REG_TIMER_COUNTER_ENABLE_COUNTING    0x00000001
265#define LEON_REG_TIMER_COUNTER_DISABLE_COUNTING   0x00000000
266
267#define LEON_REG_TIMER_COUNTER_RELOAD_MASK        0x00000002
268#define LEON_REG_TIMER_COUNTER_ENABLE_MASK        0x00000001
269
270#define LEON_REG_TIMER_COUNTER_DEFINED_MASK       0x00000003
271#define LEON_REG_TIMER_COUNTER_CURRENT_MODE_MASK  0x00000003
272
273#if defined(RTEMS_MULTIPROCESSING)
274  #define LEON3_CLOCK_INDEX \
275   (rtems_configuration_get_user_multiprocessing_table() ? LEON3_Cpu_Index : 0)
276#else
277  #define LEON3_CLOCK_INDEX 0
278#endif
279
280/*
281 * We assume that a boot loader (usually GRMON) initialized the GPTIMER 0 to
282 * run with 1MHz.  This is used to determine all clock frequencies of the PnP
283 * devices.  See also ambapp_freq_init() and ambapp_freq_get().
284 */
285#define LEON3_GPTIMER_0_FREQUENCY_SET_BY_BOOT_LOADER 1000000
286
287/* Load 32-bit word by forcing a cache-miss */
288static inline unsigned int leon_r32_no_cache(uintptr_t addr)
289{
290  unsigned int tmp;
291  __asm__ volatile (" lda [%1] 1, %0\n" : "=r"(tmp) : "r"(addr));
292  return tmp;
293}
294
295/* Let user override which on-chip APBUART will be debug UART
296 * 0 = Default APBUART. On MP system CPU0=APBUART0, CPU1=APBUART1...
297 * 1 = APBUART[0]
298 * 2 = APBUART[1]
299 * 3 = APBUART[2]
300 * ...
301 */
302extern int syscon_uart_index;
303
304/* Let user override which on-chip APBUART will be debug UART
305 * 0 = Default APBUART. On MP system CPU0=APBUART0, CPU1=APBUART1...
306 * 1 = APBUART[0]
307 * 2 = APBUART[1]
308 * 3 = APBUART[2]
309 * ...
310 */
311extern int debug_uart_index;
312
313/*
314 *  apbuart_outbyte_polled
315 *
316 *  This routine transmits a character using polling.
317 */
318void apbuart_outbyte_polled(
319  struct apbuart_regs *regs,
320  unsigned char ch,
321  int do_cr_on_newline,
322  int wait_sent
323);
324
325/*
326 *  apbuart_inbyte_nonblocking
327 *
328 *  This routine polls for a character.
329 */
330int apbuart_inbyte_nonblocking(struct apbuart_regs *regs);
331
332void leon3_cpu_counter_initialize(void);
333
334/* GRLIB extended IRQ controller register */
335void leon3_ext_irq_init(void);
336
337void bsp_debug_uart_init(void);
338
339void leon3_power_down_loop(void) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
340
341static inline uint32_t leon3_get_cpu_count(
342  volatile struct irqmp_regs *irqmp
343)
344{
345  uint32_t mpstat = irqmp->mpstat;
346
347  return ((mpstat >> LEON3_IRQMPSTATUS_CPUNR) & 0xf)  + 1;
348}
349
350static inline void leon3_set_system_register(uint32_t addr, uint32_t val)
351{
352  __asm__ volatile(
353    "sta %1, [%0] 2"
354    :
355    : "r" (addr), "r" (val)
356  );
357}
358
359static inline uint32_t leon3_get_system_register(uint32_t addr)
360{
361  uint32_t val;
362
363  __asm__ volatile(
364    "lda [%1] 2, %0"
365    : "=r" (val)
366    : "r" (addr)
367  );
368
369  return val;
370}
371
372static inline void leon3_set_cache_control_register(uint32_t val)
373{
374  leon3_set_system_register(0x0, val);
375}
376
377static inline uint32_t leon3_get_cache_control_register(void)
378{
379  return leon3_get_system_register(0x0);
380}
381
382static inline uint32_t leon3_get_inst_cache_config_register(void)
383{
384  return leon3_get_system_register(0x8);
385}
386
387static inline uint32_t leon3_get_data_cache_config_register(void)
388{
389  return leon3_get_system_register(0xc);
390}
391
392static inline bool leon3_irqmp_has_timestamp(
393  volatile struct irqmp_timestamp_regs *irqmp_ts
394)
395{
396  return (irqmp_ts->control >> 27) > 0;
397}
398
399#endif /* !ASM */
400
401#ifdef __cplusplus
402}
403#endif
404
405#endif /* !_INCLUDE_LEON_h */
406/* end of include file */
407
Note: See TracBrowser for help on using the repository browser.