]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/hal/arm/mxc92323/mxc30031ads/v2_0/src/board_misc.c
Initial revision
[karo-tx-redboot.git] / packages / hal / arm / mxc92323 / mxc30031ads / v2_0 / src / board_misc.c
1 //==========================================================================
2 //
3 //      board_misc.c
4 //
5 //      HAL misc board support code
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //========================================================================*/
41
42 #include <redboot.h>
43 #include <pkgconf/hal.h>
44 #include <pkgconf/system.h>
45 #include CYGBLD_HAL_PLATFORM_H
46
47 #include <cyg/infra/cyg_type.h>         // base types
48 #include <cyg/infra/cyg_trac.h>         // tracing macros
49 #include <cyg/infra/cyg_ass.h>          // assertion macros
50
51 #include <cyg/hal/hal_io.h>             // IO macros
52 #include <cyg/hal/hal_arch.h>           // Register state info
53 #include <cyg/hal/hal_diag.h>
54 #include <cyg/hal/hal_intr.h>           // Interrupt names
55 #include <cyg/hal/hal_cache.h>
56 #include <cyg/hal/hal_soc.h>            // Hardware definitions
57 #include <cyg/hal/fsl_board.h>          // Platform specifics
58
59 #include <cyg/infra/diag.h>             // diag_printf
60
61 // All the MM table layout is here:
62 #include <cyg/hal/hal_mm.h>
63
64 extern unsigned int pmic_reg(unsigned int reg, unsigned int val, unsigned int write);
65 externC void* memset(void *, int, size_t);
66
67 void hal_mmu_init(void)
68 {
69     unsigned long ttb_base = RAM_BANK0_BASE + 0x4000;
70     unsigned long i;
71
72     /*
73      * Set the TTB register
74      */
75     asm volatile ("mcr  p15,0,%0,c2,c0,0" : : "r"(ttb_base) /*:*/);
76
77     /*
78      * Set the Domain Access Control Register
79      */
80     i = ARM_ACCESS_DACR_DEFAULT;
81     asm volatile ("mcr  p15,0,%0,c3,c0,0" : : "r"(i) /*:*/);
82
83     /*
84      * First clear all TT entries - ie Set them to Faulting
85      */
86     memset((void *)ttb_base, 0, ARM_FIRST_LEVEL_PAGE_TABLE_SIZE);
87
88     /*              Actual   Virtual  Size   Attributes                                                    Function  */
89     /*              Base     Base     MB     cached?           buffered?        access permissions                 */
90     /*              xxx00000 xxx00000                                                                                */
91     X_ARM_MMU_SECTION(0x000, 0xF00,   0x1,   ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* ROM */
92     X_ARM_MMU_SECTION(0x300, 0x300,   0x1,   ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* L2CC */
93     X_ARM_MMU_SECTION(0x43F, 0x43F,   0x3C1, ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* Internal Regsisters upto SDRAM*/
94     X_ARM_MMU_SECTION(0x900, 0x000,   0x40,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); /* SDRAM */
95     X_ARM_MMU_SECTION(0x900, 0x900,   0x40,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); /* SDRAM */
96     X_ARM_MMU_SECTION(0xA00, 0xA00,   0x40,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); /* Flash */
97     X_ARM_MMU_SECTION(0xB00, 0xB00,   0x10,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* External I/O */
98     X_ARM_MMU_SECTION(0xB40, 0xB40,   0x10,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* External I/O */
99     X_ARM_MMU_SECTION(0xB60, 0xB60,   0x10,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* External I/O */
100     X_ARM_MMU_SECTION(0xB80, 0xB80,   0x80,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* EIM control*/
101 }
102
103 //
104 // Platform specific initialization
105 //
106
107 void plf_hardware_init(void)
108 {
109     unsigned int v;
110     
111     // For x16 bit 2K page
112     v =  readl(SRC_BASE_ADDR + SRC_SSCR);
113     v |= 3 << 19;
114     writel(v, SRC_BASE_ADDR + SRC_SSCR);
115
116     // NAND flash setup
117     writel(NFC_IPC_CREQ, NFC_IPC_REG);
118     hal_delay_us(100);
119
120 #if 0
121     // Why does this cause the system hang? !!!!
122     while ((readl(NFC_IPC_REG) & NFC_IPC_CACK) != 0) {
123         //wait till ack back
124     }
125 #endif
126
127     v = readl(NFC_FLASH_CONFIG2_REG);
128     v = (v & ~0xFBF) | NFC_FLASH_CONFIG2_EDC2 | NFC_FLASH_CONFIG2_PPB_64 |
129         NFC_FLASH_CONFIG2_ECC_EN | NFC_FLASH_CONFIG2_SYM |
130         NFC_FLASH_CONFIG2_DLP_DISABLE;
131     writel(v, NFC_FLASH_CONFIG2_REG);
132
133     writel(0xFFFF0000, UNLOCK_BLK_ADD0_REG);
134     writel(0xFFFF0000, UNLOCK_BLK_ADD1_REG);
135     writel(0xFFFF0000, UNLOCK_BLK_ADD2_REG);
136     writel(0xFFFF0000, UNLOCK_BLK_ADD3_REG);
137     
138     v = readl(NFC_WR_PROT_REG);
139     v = (v & ~0x00330007) | NFC_WR_PROTECT_CS0 | NFC_WR_PROTECT_BLS_UNLOCK |
140         NFC_WR_PROTECT_WPC;
141     writel(v, NFC_WR_PROT_REG);
142
143     writel(0, NFC_IPC_REG);
144 }
145
146 static void board_raise_voltage(void)
147 {
148     /* Increase core voltages */
149     pmic_reg(24, 0x00E38E, 1);
150     pmic_reg(25, 0x00018E, 1);
151     pmic_reg(26, 0x024928, 1);
152 }
153
154 RedBoot_init(board_raise_voltage, RedBoot_INIT_PRIO(101));
155
156 #include CYGHWR_MEMORY_LAYOUT_H
157
158 typedef void code_fun(void);
159
160 void board_program_new_stack(void *func)
161 {
162     register CYG_ADDRESS stack_ptr asm("sp");
163     register CYG_ADDRESS old_stack asm("r4");
164     register code_fun *new_func asm("r0");
165     old_stack = stack_ptr;
166     stack_ptr = CYGMEM_REGION_ram + CYGMEM_REGION_ram_SIZE - sizeof(CYG_ADDRESS);
167     new_func = (code_fun*)func;
168     new_func();
169     stack_ptr = old_stack;
170 }
171
172 // ------------------------------------------------------------------------