summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gp32/startup/bspstart.c
blob: 95dc4b34ee56b3509136da62c146ef27744eb668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 * This file contains the ARM BSP startup package. It includes application,
 * board, and monitor specific initialization and configuration. The generic CPU
 * dependent initialization has been performed before this routine is invoked. 
 *
 *
 * Copyright (c) 2000 Canon Research Centre France SA.
 * Emmanuel Raguet, mailto:raguet@crf.canon.fr
 *
 *   The license and distribution terms for this file may be
 *   found in found in the file LICENSE in this distribution or at
 *   http://www.rtems.com/license/LICENSE.
 *
 */ 

#include <bsp.h>
#include <rtems/bspIo.h>
#include <s3c24xx.h>

/*
 * External Prototypes
 */
extern void rtems_irq_mngt_init(void);

/*
 *  BSP specific Idle task
 */
Thread bsp_idle_task(uint32_t ignored)
{
  while(1) {
    asm volatile ("MCR p15,0,r0,c7,c0,4     \n");
  }
}
 
/*
 *  BSP Specific Initialization in C
 */
void bsp_start_default( void )
{
  uint32_t cr;
  uint32_t pend,last;
  uint32_t REFCNT;
  int i;

  /* stop RTC */
  #ifdef CPU_S3C2400
    rTICINT = 0x0;
  #else
    rTICNT = 0x0;
  #endif
  /* stop watchdog,ADC and timers */
  rWTCON = 0x0;
  rTCON = 0x0;
  rADCCON = 0x0;

  /* disable interrupts */
  rINTMOD = 0x0;
  rINTMSK = BIT_ALLMSK; /* unmasked by drivers */

  last = 0;
  for(i=0; i<4; i++) {
    pend = rSRCPND;
    if(pend == 0 || pend == last)
      break;
    rSRCPND = pend;
    rINTPND = pend;
    last    = pend;
  }

  /* setup clocks */
  rCLKDIVN = M_CLKDIVN;
  rMPLLCON = ((M_MDIV<<12)+(M_PDIV<<4)+M_SDIV);
  /* setup rREFRESH
   * period = 15.6 us, HCLK=66Mhz, (2048+1-15.6*66)
   */
  REFCNT   = 2048+1-(15.6*get_HCLK()/1000000);
  rREFRESH = ((REFEN<<23)+(TREFMD<<22)+(Trp<<20)+(Trc<<18)+(Tchr<<16)+REFCNT);

  /* set prescaler for timers 2,3,4 to 16(15+1) */
  cr = rTCFG0 & 0xFFFF00FF;
  rTCFG0 = (cr | (15<<8));

  /* set prescaler for timers 0,1 to 1(0+1) */
  cr = rTCFG0 & 0xFFFFFF00;
  rTCFG0 = (cr | (0<<0));

  /*
   * Init rtems exceptions management
   */
  rtems_exception_init_mngt();

  /*
   * Init rtems interrupt management
   */
  rtems_irq_mngt_init();
}

/*
 *  By making this a weak alias for bsp_start_default, a brave soul
 *  can override the actual bsp_start routine used.
 */

void bsp_start (void) __attribute__ ((weak, alias("bsp_start_default")));

void bsp_reset(void)
{
  rtems_interrupt_level level;
  rtems_interrupt_disable(level);
  printk("bsp_reset.....\n");
  /* disable mmu, invalide i-cache and call swi #4 */
  asm volatile(""
    "mrc    p15,0,r0,c1,c0,0  \n"
    "bic    r0,r0,#1          \n"
    "mcr    p15,0,r0,c1,c0,0  \n"
    "nop                      \n"
    "nop                      \n"
    "nop                      \n"
    "nop                      \n"
    "nop                      \n"
    "mov    r0,#0             \n"
    "MCR    p15,0,r0,c7,c5,0  \n"
    "nop                      \n"
    "nop                      \n"
    "nop                      \n"
    "nop                      \n"
    "nop                      \n"
    "swi    #4                "
    :
    :
    : "r0"
  );
  /* we should be back in bios now */
}