blob: da9e21dddbb7bc64f38c33dcafa3c2ef256b0b5f [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>
Ben Warrenb1c0eaa2009-08-25 13:09:37 -070027#include <netdev.h>
wdenk281e00a2004-08-01 22:48:16 +000028/*#include <mc9328.h>*/
wdenk86c98882005-04-03 14:26:46 +000029#include <asm/arch/imx-regs.h>
Anatolij Gustschin5076c7a2011-11-19 13:12:17 +000030#include <asm/io.h>
wdenk2d24a3a2004-06-09 21:50:45 +000031
Wolfgang Denkd87080b2006-03-31 18:32:53 +020032DECLARE_GLOBAL_DATA_PTR;
wdenk2d24a3a2004-06-09 21:50:45 +000033
34#define FCLK_SPEED 1
35
36#if FCLK_SPEED==0 /* Fout = 203MHz, Fin = 12MHz for Audio */
37#define M_MDIV 0xC3
38#define M_PDIV 0x4
39#define M_SDIV 0x1
40#elif FCLK_SPEED==1 /* Fout = 202.8MHz */
41#define M_MDIV 0xA1
42#define M_PDIV 0x3
43#define M_SDIV 0x1
44#endif
45
46#define USB_CLOCK 1
47
48#if USB_CLOCK==0
49#define U_M_MDIV 0xA1
50#define U_M_PDIV 0x3
51#define U_M_SDIV 0x1
52#elif USB_CLOCK==1
53#define U_M_MDIV 0x48
54#define U_M_PDIV 0x3
55#define U_M_SDIV 0x2
56#endif
57
58#if 0
59
Wolfgang Denkd87080b2006-03-31 18:32:53 +020060static inline void delay (unsigned long loops)
61{
wdenk2d24a3a2004-06-09 21:50:45 +000062 __asm__ volatile ("1:\n"
Wolfgang Denkd87080b2006-03-31 18:32:53 +020063 "subs %0, %1, #1\n"
64 "bne 1b":"=r" (loops):"0" (loops));
wdenk2d24a3a2004-06-09 21:50:45 +000065}
66
wdenk49822e22004-06-19 21:19:10 +000067#endif
wdenk2d24a3a2004-06-09 21:50:45 +000068
69/*
70 * Miscellaneous platform dependent initialisations
71 */
72
Wolfgang Denkd87080b2006-03-31 18:32:53 +020073void SetAsynchMode (void)
74{
75 __asm__ ("mrc p15,0,r0,c1,c0,0 \n"
76 "mov r2, #0xC0000000 \n"
77 "orr r0,r2,r0 \n" "mcr p15,0,r0,c1,c0,0 \n");
wdenk2d24a3a2004-06-09 21:50:45 +000078}
wdenk49822e22004-06-19 21:19:10 +000079
wdenk2d24a3a2004-06-09 21:50:45 +000080static u32 mc9328sid;
81
Fabio Estevame845f902011-06-11 15:16:32 +000082int board_early_init_f(void)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020083{
Wolfgang Denkd87080b2006-03-31 18:32:53 +020084 mc9328sid = SIDR;
wdenk2d24a3a2004-06-09 21:50:45 +000085
Wolfgang Denkd87080b2006-03-31 18:32:53 +020086 GPCR = 0x000003AB; /* I/O pad driving strength */
wdenk2d24a3a2004-06-09 21:50:45 +000087
Wolfgang Denk53677ef2008-05-20 16:00:29 +020088 /* MX1_CS1U = 0x00000A00; */ /* SRAM initialization */
89/* MX1_CS1L = 0x11110601; */
wdenk2d24a3a2004-06-09 21:50:45 +000090
Wolfgang Denkd87080b2006-03-31 18:32:53 +020091 MPCTL0 = 0x04632410; /* setting for 150 MHz MCU PLL CLK */
wdenk2d24a3a2004-06-09 21:50:45 +000092
93/* set FCLK divider 1 (i.e. FCLK to MCU PLL CLK) and
94 * BCLK divider to 2 (i.e. BCLK to 48 MHz)
95 */
Wolfgang Denkd87080b2006-03-31 18:32:53 +020096 CSCR = 0xAF000403;
wdenk2d24a3a2004-06-09 21:50:45 +000097
Wolfgang Denkd87080b2006-03-31 18:32:53 +020098 CSCR |= 0x00200000; /* Trigger the restart bit(bit 21) */
99 CSCR &= 0xFFFF7FFF; /* Program PRESC bit(bit 15) to 0 to divide-by-1 */
wdenk2d24a3a2004-06-09 21:50:45 +0000100
101/* setup cs4 for cs8900 ethernet */
wdenk49822e22004-06-19 21:19:10 +0000102
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200103 CS4U = 0x00000F00; /* Initialize CS4 for CS8900 ethernet */
104 CS4L = 0x00001501;
wdenk49822e22004-06-19 21:19:10 +0000105
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200106 GIUS (0) &= 0xFF3FFFFF;
107 GPR (0) &= 0xFF3FFFFF;
wdenk49822e22004-06-19 21:19:10 +0000108
Anatolij Gustschin5076c7a2011-11-19 13:12:17 +0000109 readl(0x1500000C);
110 readl(0x1500000C);
wdenk2d24a3a2004-06-09 21:50:45 +0000111
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200112 SetAsynchMode ();
wdenk2d24a3a2004-06-09 21:50:45 +0000113
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200114 icache_enable ();
115 dcache_enable ();
wdenk2d24a3a2004-06-09 21:50:45 +0000116
117/* set PERCLKs */
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200118 PCDR = 0x00000055; /* set PERCLKS */
wdenk49822e22004-06-19 21:19:10 +0000119
120/* PERCLK3 is only used by SSI so the SSI driver can set it any value it likes
121 * PERCLK1 and PERCLK2 are shared so DO NOT change it in any other place
wdenk2d24a3a2004-06-09 21:50:45 +0000122 * all sources selected as normal interrupt
123 */
wdenk2d24a3a2004-06-09 21:50:45 +0000124
wdenk281e00a2004-08-01 22:48:16 +0000125/* MX1_INTTYPEH = 0;
126 MX1_INTTYPEL = 0;
127*/
wdenk2d24a3a2004-06-09 21:50:45 +0000128 return 0;
129}
130
Fabio Estevame845f902011-06-11 15:16:32 +0000131int board_init(void)
132{
133 gd->bd->bi_arch_number = MACH_TYPE_MX1ADS;
134
135 gd->bd->bi_boot_params = 0x08000100; /* adress of boot parameters */
136
137 return 0;
138}
139
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200140int board_late_init (void)
141{
wdenk2d24a3a2004-06-09 21:50:45 +0000142
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200143 setenv ("stdout", "serial");
144 setenv ("stderr", "serial");
wdenk2d24a3a2004-06-09 21:50:45 +0000145
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200146 switch (mc9328sid) {
147 case 0x0005901d:
148 printf ("MX1ADS board with MC9328 MX1 (0L44N), Silicon ID 0x%08x \n\n",
149 mc9328sid);
150 break;
151 case 0x04d4c01d:
152 printf ("MX1ADS board with MC9328 MXL (1L45N), Silicon ID 0x%08x \n\n",
153 mc9328sid);
154 break;
155 case 0x00d4c01d:
156 printf ("MX1ADS board with MC9328 MXL (2L45N), Silicon ID 0x%08x \n\n",
157 mc9328sid);
158 break;
wdenk2d24a3a2004-06-09 21:50:45 +0000159
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200160 default:
161 printf ("MX1ADS board with UNKNOWN MC9328 cpu, Silicon ID 0x%08x \n",
162 mc9328sid);
163 break;
wdenk2d24a3a2004-06-09 21:50:45 +0000164 }
wdenk2d24a3a2004-06-09 21:50:45 +0000165 return 0;
wdenk49822e22004-06-19 21:19:10 +0000166}
167
Fabio Estevame845f902011-06-11 15:16:32 +0000168int dram_init(void)
169{
170 /* dram_init must store complete ramsize in gd->ram_size */
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +0000171 gd->ram_size = get_ram_size((void *)PHYS_SDRAM_1,
Fabio Estevame845f902011-06-11 15:16:32 +0000172 PHYS_SDRAM_1_SIZE);
173 return 0;
174}
175
176void dram_init_banksize(void)
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200177{
wdenk2d24a3a2004-06-09 21:50:45 +0000178 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200179 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
wdenk2d24a3a2004-06-09 21:50:45 +0000180}
Ben Warrenb1c0eaa2009-08-25 13:09:37 -0700181
182#ifdef CONFIG_CMD_NET
183int board_eth_init(bd_t *bis)
184{
185 int rc = 0;
186#ifdef CONFIG_CS8900
187 rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
188#endif
189 return rc;
190}
191#endif