source: rtems/c/src/lib/libbsp/m68k/av5282/startup/bspstart.c @ b1ded240

4.104.115
Last change on this file since b1ded240 was b1ded240, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:03:28

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds, startup/linkcmdsflash, startup/linkcmdsram: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h.
  • Property mode set to 100644
File size: 4.0 KB
Line 
1/*
2 *  BSP startup
3 *
4 *  This routine starts the application.  It includes application,
5 *  board, and monitor specific initialization and configuration.
6 *  The generic CPU dependent initialization has been performed
7 *  before this routine is invoked.
8 *
9 *  Author:
10 *    David Fiddes, D.J@fiddes.surfaid.org
11 *    http://www.calm.hw.ac.uk/davidf/coldfire/
12 *
13 *  COPYRIGHT (c) 1989-1998.
14 *  On-Line Applications Research Corporation (OAR).
15 *
16 *  The license and distribution terms for this file may be
17 *  found in the file LICENSE in this distribution or at
18 *
19 *  http://www.rtems.com/license/LICENSE.
20 *
21 *  $Id$
22 */
23
24#include <bsp.h>
25#include <string.h>
26 
27/*
28 * Cacheable areas
29 */
30#define SDRAM_BASE      0
31#define SDRAM_SIZE      (16*1024*1024)
32#define FLASH_BASE      0xFF800000
33#define FLASH_SIZE      (8*1024*1024)
34
35/*
36 * CPU-space access
37 */
38#define m68k_set_cacr(_cacr) asm volatile ("movec %0,%%cacr\n\tnop" : : "d" (_cacr))
39#define m68k_set_acr0(_acr0) asm volatile ("movec %0,%%acr0" : : "d" (_acr0))
40#define m68k_set_acr1(_acr1) asm volatile ("movec %0,%%acr1" : : "d" (_acr1))
41
42/*
43 * Read/write copy of common cache
44 *   Split I/D cache
45 *   Allow CPUSHL to invalidate a cache line
46 *   Enable buffered writes
47 *   No burst transfers on non-cacheable accesses
48 *   Default cache mode is *disabled* (cache only ACRx areas)
49 */
50static uint32_t cacr_mode = MCF5XXX_CACR_CENB |
51                              MCF5XXX_CACR_DBWE |
52                              MCF5XXX_CACR_DCM;
53/*
54 * Cannot be frozen
55 */
56void _CPU_cache_freeze_data(void) {}
57void _CPU_cache_unfreeze_data(void) {}
58void _CPU_cache_freeze_instruction(void) {}
59void _CPU_cache_unfreeze_instruction(void) {}
60
61/*
62 * Write-through data cache -- flushes are unnecessary
63 */
64void _CPU_cache_flush_1_data_line(const void *d_addr) {}
65void _CPU_cache_flush_entire_data(void) {}
66
67void _CPU_cache_enable_instruction(void)
68{
69    rtems_interrupt_level level;
70
71    rtems_interrupt_disable(level);
72    cacr_mode &= ~MCF5XXX_CACR_DIDI;
73    m68k_set_cacr(cacr_mode);
74    rtems_interrupt_enable(level);
75}
76
77void _CPU_cache_disable_instruction(void)
78{
79    rtems_interrupt_level level;
80
81    rtems_interrupt_disable(level);
82    cacr_mode |= MCF5XXX_CACR_DIDI;
83    m68k_set_cacr(cacr_mode);
84    rtems_interrupt_enable(level);
85}
86
87void _CPU_cache_invalidate_entire_instruction(void)
88{
89    m68k_set_cacr(cacr_mode | MCF5XXX_CACR_CINV | MCF5XXX_CACR_INVI);
90}
91
92void _CPU_cache_invalidate_1_instruction_line(const void *addr)
93{
94    /*
95     * Top half of cache is I-space
96     */
97    addr = (void *)((int)addr | 0x400);
98    asm volatile ("cpushl %%bc,(%0)" :: "a" (addr));
99}
100
101void _CPU_cache_enable_data(void)
102{
103    rtems_interrupt_level level;
104
105    rtems_interrupt_disable(level);
106    cacr_mode &= ~MCF5XXX_CACR_DISD;
107    m68k_set_cacr(cacr_mode);
108    rtems_interrupt_enable(level);
109}
110
111void _CPU_cache_disable_data(void)
112{
113    rtems_interrupt_level level;
114
115    rtems_interrupt_disable(level);
116    rtems_interrupt_disable(level);
117    cacr_mode |= MCF5XXX_CACR_DISD;
118    m68k_set_cacr(cacr_mode);
119    rtems_interrupt_enable(level);
120}
121
122void _CPU_cache_invalidate_entire_data(void)
123{
124    m68k_set_cacr(cacr_mode | MCF5XXX_CACR_CINV | MCF5XXX_CACR_INVD);
125}
126
127void _CPU_cache_invalidate_1_data_line(const void *addr)
128{
129    /*
130     * Bottom half of cache is D-space
131     */
132    addr = (void *)((int)addr & ~0x400);
133    asm volatile ("cpushl %%bc,(%0)" :: "a" (addr));
134}
135
136/*
137 *  bsp_start
138 *
139 *  This routine does the bulk of the system initialisation.
140 */
141void bsp_start( void )
142{
143  /*
144   * Invalidate the cache and disable it
145   */
146  m68k_set_acr0(0);
147  m68k_set_acr1(0);
148  m68k_set_cacr(MCF5XXX_CACR_CINV);
149
150  /*
151   * Cache SDRAM and FLASH
152   */
153  m68k_set_acr0(MCF5XXX_ACR_AB(SDRAM_BASE)    |
154                MCF5XXX_ACR_AM(SDRAM_SIZE-1)  |
155                MCF5XXX_ACR_EN                |
156                MCF5XXX_ACR_BWE               |
157                MCF5XXX_ACR_SM_IGNORE);
158
159  /*
160   * Enable the cache
161   */
162  m68k_set_cacr(cacr_mode);
163}
164
165extern char _CPUClockSpeed[];
166
167uint32_t get_CPU_clock_speed(void)
168{
169  return( (uint32_t)_CPUClockSpeed);
170}
Note: See TracBrowser for help on using the repository browser.