blob: 5c33ba3c0ea8354122425cc4c54bde63dbd3cbe6 [file] [log] [blame]
wdenk2d24a3a2004-06-09 21:50:45 +00001/*
2 * board/mx1ads/mx1ads.c
wdenk49822e22004-06-19 21:19:10 +00003 *
wdenk2d24a3a2004-06-09 21:50:45 +00004 * (c) Copyright 2004
5 * Techware Information Technology, Inc.
6 * http://www.techware.com.tw/
7 *
8 * Ming-Len Wu <minglen_wu@techware.com.tw>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
wdenk2d24a3a2004-06-09 21:50:45 +000026#include <common.h>
wdenk281e00a2004-08-01 22:48:16 +000027/*#include <mc9328.h>*/
wdenk86c98882005-04-03 14:26:46 +000028#include <asm/arch/imx-regs.h>
wdenk2d24a3a2004-06-09 21:50:45 +000029
30/* ------------------------------------------------------------------------- */
31
32#define FCLK_SPEED 1
33
34#if FCLK_SPEED==0 /* Fout = 203MHz, Fin = 12MHz for Audio */
35#define M_MDIV 0xC3
36#define M_PDIV 0x4
37#define M_SDIV 0x1
38#elif FCLK_SPEED==1 /* Fout = 202.8MHz */
39#define M_MDIV 0xA1
40#define M_PDIV 0x3
41#define M_SDIV 0x1
42#endif
43
44#define USB_CLOCK 1
45
46#if USB_CLOCK==0
47#define U_M_MDIV 0xA1
48#define U_M_PDIV 0x3
49#define U_M_SDIV 0x1
50#elif USB_CLOCK==1
51#define U_M_MDIV 0x48
52#define U_M_PDIV 0x3
53#define U_M_SDIV 0x2
54#endif
55
56#if 0
57
58static inline void delay (unsigned long loops) {
59 __asm__ volatile ("1:\n"
60 "subs %0, %1, #1\n"
61 "bne 1b":"=r" (loops):"0" (loops));
62}
63
wdenk49822e22004-06-19 21:19:10 +000064#endif
wdenk2d24a3a2004-06-09 21:50:45 +000065
66/*
67 * Miscellaneous platform dependent initialisations
68 */
69
wdenk2d24a3a2004-06-09 21:50:45 +000070void SetAsynchMode(void) {
71 __asm__ (
72 "mrc p15,0,r0,c1,c0,0 \n"
73 "mov r2, #0xC0000000 \n"
74 "orr r0,r2,r0 \n"
75 "mcr p15,0,r0,c1,c0,0 \n"
76 );
77}
wdenk49822e22004-06-19 21:19:10 +000078
wdenk2d24a3a2004-06-09 21:50:45 +000079static u32 mc9328sid;
80
81int board_init (void) {
82
83 DECLARE_GLOBAL_DATA_PTR;
84
85 volatile unsigned int tmp;
86
wdenk281e00a2004-08-01 22:48:16 +000087 mc9328sid = SIDR;
wdenk2d24a3a2004-06-09 21:50:45 +000088
wdenk281e00a2004-08-01 22:48:16 +000089 GPCR = 0x000003AB; /* I/O pad driving strength */
wdenk49822e22004-06-19 21:19:10 +000090
wdenk2d24a3a2004-06-09 21:50:45 +000091/* MX1_CS1U = 0x00000A00; */ /* SRAM initialization */
92/* MX1_CS1L = 0x11110601; */
wdenk2d24a3a2004-06-09 21:50:45 +000093
wdenk281e00a2004-08-01 22:48:16 +000094 MPCTL0 = 0x04632410; /* setting for 150 MHz MCU PLL CLK */
wdenk2d24a3a2004-06-09 21:50:45 +000095
96/* set FCLK divider 1 (i.e. FCLK to MCU PLL CLK) and
97 * BCLK divider to 2 (i.e. BCLK to 48 MHz)
98 */
wdenk281e00a2004-08-01 22:48:16 +000099 CSCR = 0xAF000403;
wdenk2d24a3a2004-06-09 21:50:45 +0000100
wdenk281e00a2004-08-01 22:48:16 +0000101 CSCR |= 0x00200000; /* Trigger the restart bit(bit 21) */
102 CSCR &= 0xFFFF7FFF; /* Program PRESC bit(bit 15) to 0 to divide-by-1 */
wdenk2d24a3a2004-06-09 21:50:45 +0000103
104/* setup cs4 for cs8900 ethernet */
wdenk49822e22004-06-19 21:19:10 +0000105
wdenk281e00a2004-08-01 22:48:16 +0000106 CS4U = 0x00000F00; /* Initialize CS4 for CS8900 ethernet */
107 CS4L = 0x00001501;
wdenk49822e22004-06-19 21:19:10 +0000108
wdenk281e00a2004-08-01 22:48:16 +0000109 GIUS(0) &= 0xFF3FFFFF;
110 GPR(0) &= 0xFF3FFFFF;
wdenk49822e22004-06-19 21:19:10 +0000111
wdenk2d24a3a2004-06-09 21:50:45 +0000112 tmp = *(unsigned int *)(0x1500000C);
113 tmp = *(unsigned int *)(0x1500000C);
114
wdenk2d24a3a2004-06-09 21:50:45 +0000115 SetAsynchMode();
116
wdenk731215e2004-10-10 18:41:04 +0000117 gd->bd->bi_arch_number = MACH_TYPE_MX1ADS;
wdenk2d24a3a2004-06-09 21:50:45 +0000118
119 gd->bd->bi_boot_params = 0x08000100; /* adress of boot parameters */
120
121 icache_enable();
122 dcache_enable();
123
124/* set PERCLKs */
wdenk281e00a2004-08-01 22:48:16 +0000125 PCDR = 0x00000055; /* set PERCLKS */
wdenk49822e22004-06-19 21:19:10 +0000126
127/* PERCLK3 is only used by SSI so the SSI driver can set it any value it likes
128 * PERCLK1 and PERCLK2 are shared so DO NOT change it in any other place
wdenk2d24a3a2004-06-09 21:50:45 +0000129 * all sources selected as normal interrupt
130 */
wdenk2d24a3a2004-06-09 21:50:45 +0000131
wdenk281e00a2004-08-01 22:48:16 +0000132/* MX1_INTTYPEH = 0;
133 MX1_INTTYPEL = 0;
134*/
wdenk2d24a3a2004-06-09 21:50:45 +0000135 return 0;
136}
137
wdenk2d24a3a2004-06-09 21:50:45 +0000138int board_late_init(void) {
139
140 setenv("stdout", "serial");
141 setenv("stderr", "serial");
142
143 switch (mc9328sid) {
144 case 0x0005901d :
wdenk49822e22004-06-19 21:19:10 +0000145 printf ("MX1ADS board with MC9328 MX1 (0L44N), Silicon ID 0x%08x \n\n",mc9328sid);
wdenk2d24a3a2004-06-09 21:50:45 +0000146 break;
147 case 0x04d4c01d :
wdenk49822e22004-06-19 21:19:10 +0000148 printf ("MX1ADS board with MC9328 MXL (1L45N), Silicon ID 0x%08x \n\n",mc9328sid);
wdenk2d24a3a2004-06-09 21:50:45 +0000149 break;
150 case 0x00d4c01d :
wdenk49822e22004-06-19 21:19:10 +0000151 printf ("MX1ADS board with MC9328 MXL (2L45N), Silicon ID 0x%08x \n\n",mc9328sid);
wdenk2d24a3a2004-06-09 21:50:45 +0000152 break;
153
154 default :
wdenk49822e22004-06-19 21:19:10 +0000155 printf ("MX1ADS board with UNKNOWN MC9328 cpu, Silicon ID 0x%08x \n",mc9328sid);
wdenk2d24a3a2004-06-09 21:50:45 +0000156 break;
wdenk2d24a3a2004-06-09 21:50:45 +0000157 }
wdenk2d24a3a2004-06-09 21:50:45 +0000158 return 0;
wdenk49822e22004-06-19 21:19:10 +0000159}
160
wdenk2d24a3a2004-06-09 21:50:45 +0000161int dram_init (void) {
162 DECLARE_GLOBAL_DATA_PTR;
163
164 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
165 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
166
167 return 0;
168}