2 * board/mx1ads/mx1ads.c
5 * Techware Information Technology, Inc.
6 * http://www.techware.com.tw/
8 * Ming-Len Wu <minglen_wu@techware.com.tw>
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.
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.
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,
27 /*#include <mc9328.h>*/
28 #include <asm/arch/imx-regs.h>
30 DECLARE_GLOBAL_DATA_PTR
;
34 #if FCLK_SPEED==0 /* Fout = 203MHz, Fin = 12MHz for Audio */
38 #elif FCLK_SPEED==1 /* Fout = 202.8MHz */
58 static inline void delay (unsigned long loops
)
60 __asm__
volatile ("1:\n"
62 "bne 1b":"=r" (loops
):"0" (loops
));
68 * Miscellaneous platform dependent initialisations
71 void SetAsynchMode (void)
73 __asm__ ("mrc p15,0,r0,c1,c0,0 \n"
74 "mov r2, #0xC0000000 \n"
75 "orr r0,r2,r0 \n" "mcr p15,0,r0,c1,c0,0 \n");
82 volatile unsigned int tmp
;
86 GPCR
= 0x000003AB; /* I/O pad driving strength */
88 /* MX1_CS1U = 0x00000A00; */ /* SRAM initialization */
89 /* MX1_CS1L = 0x11110601; */
91 MPCTL0
= 0x04632410; /* setting for 150 MHz MCU PLL CLK */
93 /* set FCLK divider 1 (i.e. FCLK to MCU PLL CLK) and
94 * BCLK divider to 2 (i.e. BCLK to 48 MHz)
98 CSCR
|= 0x00200000; /* Trigger the restart bit(bit 21) */
99 CSCR
&= 0xFFFF7FFF; /* Program PRESC bit(bit 15) to 0 to divide-by-1 */
101 /* setup cs4 for cs8900 ethernet */
103 CS4U
= 0x00000F00; /* Initialize CS4 for CS8900 ethernet */
106 GIUS (0) &= 0xFF3FFFFF;
107 GPR (0) &= 0xFF3FFFFF;
109 tmp
= *(unsigned int *) (0x1500000C);
110 tmp
= *(unsigned int *) (0x1500000C);
114 gd
->bd
->bi_arch_number
= MACH_TYPE_MX1ADS
;
116 gd
->bd
->bi_boot_params
= 0x08000100; /* adress of boot parameters */
122 PCDR
= 0x00000055; /* set PERCLKS */
124 /* PERCLK3 is only used by SSI so the SSI driver can set it any value it likes
125 * PERCLK1 and PERCLK2 are shared so DO NOT change it in any other place
126 * all sources selected as normal interrupt
135 int board_late_init (void)
138 setenv ("stdout", "serial");
139 setenv ("stderr", "serial");
143 printf ("MX1ADS board with MC9328 MX1 (0L44N), Silicon ID 0x%08x \n\n",
147 printf ("MX1ADS board with MC9328 MXL (1L45N), Silicon ID 0x%08x \n\n",
151 printf ("MX1ADS board with MC9328 MXL (2L45N), Silicon ID 0x%08x \n\n",
156 printf ("MX1ADS board with UNKNOWN MC9328 cpu, Silicon ID 0x%08x \n",
165 gd
->bd
->bi_dram
[0].start
= PHYS_SDRAM_1
;
166 gd
->bd
->bi_dram
[0].size
= PHYS_SDRAM_1_SIZE
;