source: rtems/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c @ 24bf11e

4.115
Last change on this file since 24bf11e was 24bf11e, checked in by Sebastian Huber <sebastian.huber@…>, on 02/12/14 at 09:31:38

score: Add CPU counter support

Add a CPU counter interface to allow access to a free-running counter.
It is useful to measure short time intervals. This can be used for
example to enable profiling of critical low-level functions.

Add two busy wait functions rtems_counter_delay_ticks() and
rtems_counter_delay_nanoseconds() implemented via the CPU counter.

  • Property mode set to 100644
File size: 11.1 KB
Line 
1/*
2 *  This routine starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-1998.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  Modified to support the MCP750.
15 *  Modifications Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
16 *
17 *  Modified to support the Synergy VGM & Motorola PowerPC boards.
18 *  (C) by Till Straumann, <strauman@slac.stanford.edu>, 2002, 2004, 2005
19 *
20 *  Modified to support the mvme5500 BSP
21 *  (C) by Kate Feng <feng1@bnl.gov>, 2003, 2004
22 *      under the contract DE-AC02-98CH10886 with the Deaprtment of Energy
23 *
24 *  T. Straumann: 2005-2007; stolen again for 'beatnik'...
25 */
26#include <string.h>
27#include <stdlib.h>
28#include <ctype.h>
29
30#include <rtems/system.h>
31#include <rtems/libio.h>
32#include <rtems/libcsupport.h>
33#include <rtems/bspIo.h>
34#include <rtems/counter.h>
35#include <rtems/powerpc/powerpc.h>
36/*#include <bsp/consoleIo.h>*/
37#include <libcpu/spr.h>   /* registers.h is included here */
38#include <bsp.h>
39#include <bsp/uart.h>
40#include <bsp/pci.h>
41#include <bsp/gtreg.h>
42#include <bsp/gt_timer.h>
43#include <libcpu/bat.h>
44#include <libcpu/pte121.h>
45#include <libcpu/cpuIdent.h>
46#include <bsp/vectors.h>
47#include <bsp/vpd.h>
48
49/* for RTEMS_VERSION :-( I dont like the preassembled string */
50#include <rtems/sptables.h>
51
52#define SHOW_MORE_INIT_SETTINGS
53
54BSP_output_char_function_type     BSP_output_char = BSP_output_char_via_serial;
55BSP_polling_getchar_function_type BSP_poll_char = NULL;
56
57extern Triv121PgTbl BSP_pgtbl_setup(unsigned int *);
58extern void BSP_pgtbl_activate(Triv121PgTbl);
59extern void BSP_motload_pci_fixup(void);
60
61extern unsigned long __rtems_end[];
62
63/* We really shouldn't use these since MMUoff also sets IP;
64 * nevertheless, during early init I don't care for now
65 */
66extern void MMUoff(void);
67extern void MMUon(void);
68
69extern uint32_t probeMemoryEnd(void);
70
71SPR_RW(SPRG0)
72SPR_RW(SPRG1)
73SPR_RO(HID1)
74
75/* Table of PLL multipliers for 7455/7457:
7601000   2     00010   7.5       00000   11.5      00001   17
7710000   3     11000   8         10111   12        00101   18
7810100   4     01100   8.5       11111   12.5      00111   20
7910110   5     01111   9         01011   13        01001   21
8010010   5.5   01110   9.5       11100   13.5      01101   24
8111010   6     10101   10        11001   14        11101   28
8201010   6.5   10001   10.5      00011   15        00110   bypass
8300100   7     10011   11        11011   16        11110   off
84*/
85
86/* Sorted according to CFG bits and multiplied by 2 it looks
87 * like this (note that this is in sequential order, not
88 * tabulated as above)
89 */
90signed char mpc7450PllMultByTwo[32] = {
9123,       34,           15,           30,
9214,       36,           2/*bypass*/,  40,
934,        42,           13,           26,
9417,       48,           19,           18,
956,        21,           11,           22,
968,        20,           10,           24,
9716,       28,           12,           32,
9827,       56,           0/*off*/,     25,
99};
100
101uint32_t bsp_clicks_per_usec         = 0;
102
103/*
104 * Total memory using probing.
105 */
106unsigned int BSP_mem_size;
107
108/*
109 * PCI Bus Frequency
110 */
111unsigned int BSP_bus_frequency       = 0xdeadbeef;
112/*
113 * processor clock frequency
114 */
115unsigned int BSP_processor_frequency = 0xdeadbeef;
116
117/*
118 * Time base divisior (bus freq / TB clock)
119 */
120unsigned int BSP_time_base_divisor   = 4000; /* most 604+ CPUs seem to use this */
121
122/* Board identification string */
123char BSP_productIdent[20] = {0};
124char BSP_serialNumber[20] = {0};
125
126/* VPD appends an extra char -- what for ? */
127char BSP_enetAddr0[7] = {0};
128char BSP_enetAddr1[7] = {0};
129
130char *rtems_progname;
131
132/*
133 *  Use the shared implementations of the following routines
134 */
135 
136extern void bsp_pretasking_hook(void);
137
138#define CMDLINE_BUF_SIZE        2048
139
140static char cmdline_buf[CMDLINE_BUF_SIZE];
141char *BSP_commandline_string = cmdline_buf;
142
143/* this routine is called early and must be safe with a not properly
144 * aligned stack
145 */
146char *
147save_boot_params(void *r3, void *r4, void* r5, char *cmdline_start, char *cmdline_end)
148{
149int             i=cmdline_end-cmdline_start;
150        if ( i >= CMDLINE_BUF_SIZE )
151                i = CMDLINE_BUF_SIZE-1;
152        else if ( i < 0 )
153                i = 0;
154        memmove(cmdline_buf, cmdline_start, i);
155        cmdline_buf[i]=0;
156    return cmdline_buf;
157}
158
159static BSP_BoardType    board_type = Unknown;
160
161BSP_BoardType
162BSP_getBoardType( void )
163{
164        return board_type;
165}
166
167/*
168 *  bsp_start
169 *
170 *  This routine does the bulk of the system initialization.
171 */
172
173void bsp_start( void )
174{
175  unsigned char  *stack;
176  char           *chpt;
177  uint32_t       intrStackStart;
178  uint32_t       intrStackSize;
179
180  Triv121PgTbl  pt=0;
181
182  VpdBufRec vpdData [] = {
183        { key: ProductIdent, instance: 0, buf: BSP_productIdent, buflen: sizeof(BSP_productIdent) - 1 },
184        { key: SerialNumber, instance: 0, buf: BSP_serialNumber, buflen: sizeof(BSP_serialNumber) - 1 },
185        { key: CpuClockHz,   instance: 0, buf: &BSP_processor_frequency, buflen: sizeof(BSP_processor_frequency)  },
186        { key: BusClockHz,   instance: 0, buf: &BSP_bus_frequency, buflen: sizeof(BSP_bus_frequency)  },
187        { key: EthernetAddr, instance: 0, buf: BSP_enetAddr0, buflen: sizeof(BSP_enetAddr0) },
188        { key: EthernetAddr, instance: 1, buf: BSP_enetAddr1, buflen: sizeof(BSP_enetAddr1) },
189        VPD_END
190  };
191
192  /* T. Straumann: 4/2005
193   *
194   * Need to map the system registers early, so we can printk...
195   * (otherwise we silently die)
196   */
197  /* map the PCI 0, 1 Domain I/O space, GT64260B registers
198   * and the reserved area so that the size is the power of 2.
199   */
200  setdbat(7, BSP_DEV_AND_PCI_IO_BASE, BSP_DEV_AND_PCI_IO_BASE, BSP_DEV_AND_PCI_IO_SIZE, IO_PAGE);
201
202  /* Intersperse messages with actions to help locate problems */
203  printk("-----------------------------------------\n");
204
205  /*
206   * Get CPU identification dynamically. Note that the get_ppc_cpu_type() & friends functions
207   * store the result in global variables so that it can be used latter...
208   * This also verifies that we run on a known CPU.
209   */
210  get_ppc_cpu_type();
211  get_ppc_cpu_revision();
212
213  /* Make sure we detect a known host bridge */
214  BSP_getDiscoveryVersion(/* assert detection */ 1);
215
216  printk("Welcome to RTEMS %s\n", _RTEMS_version );
217
218  /* Leave all caches as MotLoad left them. Seems to be fine */
219
220  /*
221   * the initial stack  has aready been set to this value in start.S
222   * so there is no need to set it in r1 again... It is just for info
223   * so that it can be printed without accessing R1.
224   */
225  __asm__ volatile("mr %0, 1":"=r"(stack));
226
227  /* tag the bottom (T. Straumann 6/36/2001 <strauman@slac.stanford.edu>) */
228
229  *((uint32_t *)stack) = 0;
230
231  /*
232   * Initialize the interrupt related settings
233   * SPRG0 = interrupt nesting level count
234   * SPRG1 = software managed IRQ stack
235   *
236   * This could be done latter (e.g in IRQ_INIT) but it helps to understand
237   * some settings below...
238   */
239  intrStackStart = (uint32_t)__rtems_end;
240  intrStackSize  = rtems_configuration_get_interrupt_stack_size();
241
242  /*
243   * Initialize default raw exception handlers. See vectors/vectors_init.c
244   */
245  ppc_exc_initialize(
246                  PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
247                  intrStackStart,
248                  intrStackSize
249                  );
250
251  printk("CPU: %s\n", get_ppc_cpu_type_name(current_ppc_cpu));
252
253  /*
254   * Initialize RTEMS IRQ system
255   */
256   BSP_rtems_irq_mng_init(0);
257
258  BSP_vpdRetrieveFields(vpdData);
259
260  if ( !strncmp(BSP_productIdent,"MVME5500",8) )
261        board_type = MVME5500;
262  else if ( !strncmp(BSP_productIdent,"MVME6100",8) )
263        board_type = MVME6100;
264
265  printk("Board Type: %s (S/N %s)\n",
266                BSP_productIdent[0] ? BSP_productIdent : "n/a",
267                BSP_serialNumber[0] ? BSP_serialNumber : "n/a");
268
269  if ( 0xdeadbeef == BSP_bus_frequency ) {
270        BSP_bus_frequency       = 133333333;
271        printk("Bus Clock Freq NOT FOUND in VPD; using %10u Hz\n",
272                BSP_bus_frequency);
273  } else {
274        printk("Bus Clock Freq:  %10u Hz\n",
275                BSP_bus_frequency);
276  }
277
278  if ( 0xdeadbeef == BSP_processor_frequency ) {
279        BSP_processor_frequency  = BSP_bus_frequency/2;
280        BSP_processor_frequency *= mpc7450PllMultByTwo[ (_read_HID1() >> (31-19)) & 31 ];
281  }
282  printk("CPU Clock Freq:  %10u Hz\n", BSP_processor_frequency);
283       
284  /* probe real memory size; if it's more than 256M we can't currently access it
285   * since at this point only BAT-0 maps 0..256M
286   */
287  BSP_mem_size                          =  probeMemoryEnd();
288
289  if ( (chpt = strstr(BSP_commandline_string,"MEMSZ=")) ) {
290                char            *endp;
291                uint32_t        sz;
292                chpt+=6 /* strlen("MEMSZ=") */;
293                sz = strtoul(chpt, &endp, 0);
294                if ( endp != chpt )
295                        BSP_mem_size = sz;
296  }
297
298  printk("Memory:          %10u bytes\n", BSP_mem_size);
299
300  if ( BSP_mem_size > 0x10000000 ) {
301        uint32_t s;
302        if ( BSP_mem_size > 0x80000000 ) {
303                BSP_mem_size = 0x80000000;
304                printk("Memory clipped to 0x%08x for now, sorry\n", BSP_mem_size);
305        }
306        for ( s = 0x20000000; s < BSP_mem_size ; s<<=1)
307                ;
308        MMUoff();
309        /* since it's currently in use we must first surrender it */
310        setdbat(0, 0, 0, 0, 0);
311        setdbat(0, 0, 0, s, _PAGE_RW);
312        MMUon();
313  }
314
315  printk("-----------------------------------------\n");
316
317  /* Maybe not setup yet because of the warning message */
318
319  /* Allocate and set up the page table mappings
320   * This is only available on >604 CPUs.
321   *
322   * NOTE: This setup routine may modify the available memory
323   *       size. It is essential to call it before
324   *       calculating the workspace etc.
325   */
326  pt = BSP_pgtbl_setup(&BSP_mem_size);
327  if (!pt)
328     printk("WARNING: unable to setup page tables.\n");
329
330#ifdef SHOW_MORE_INIT_SETTINGS
331  printk("Now BSP_mem_size = 0x%x\n",BSP_mem_size);
332#endif
333
334  /*
335   * Set up our hooks
336   * Make sure libc_init is done before drivers initialized so that
337   * they can use atexit()
338   */
339
340  bsp_clicks_per_usec = BSP_bus_frequency/(BSP_time_base_divisor * 1000);
341  rtems_counter_initialize_converter(
342    BSP_bus_frequency / (BSP_time_base_divisor / 1000)
343  );
344
345#ifdef SHOW_MORE_INIT_SETTINGS
346  printk(
347    "Configuration.work_space_size = %x\n",
348    rtems_configuration_get_work_space_size()
349  );
350#endif
351
352  /* Activate the page table mappings only after
353   * initializing interrupts because the irq_mng_init()
354   * routine needs to modify the text
355   */           
356  if ( pt ) {
357#ifdef SHOW_MORE_INIT_SETTINGS
358    printk("Page table setup finished; will activate it NOW...\n");
359#endif
360    BSP_pgtbl_activate(pt);
361  }
362
363#ifdef SHOW_MORE_INIT_SETTINGS
364  printk("Going to start PCI buses scanning and initialization\n");
365#endif
366  BSP_pci_initialize();
367
368  /* need to tweak the motload setup */
369  BSP_motload_pci_fixup();
370
371  /* map 512M, 256 for PCI 256 for VME */
372  setdbat(5,BSP_PCI_HOSE0_MEM_BASE, BSP_PCI_HOSE0_MEM_BASE, BSP_PCI_HOSE0_MEM_SIZE, IO_PAGE);
373  setdbat(6,BSP_PCI_HOSE1_MEM_BASE, BSP_PCI_HOSE1_MEM_BASE, 0x10000000, IO_PAGE);
374
375#ifdef SHOW_MORE_INIT_SETTINGS
376  printk("Number of PCI buses found is : %d\n", pci_bus_count());
377#endif
378
379  /*
380   * Initialize hardware timer facility (not used by BSP itself)
381   * Needs PCI to identify discovery version...
382   */
383  BSP_timers_initialize();
384
385#ifdef SHOW_MORE_INIT_SETTINGS
386  printk("MSR %x \n", _read_MSR());
387  printk("Exit from bspstart\n");
388#endif
389}
Note: See TracBrowser for help on using the repository browser.