2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 * modified by Wolfgang Wegner <w.wegner@astro-kom.de> for ASTRO 5373l
6 * SPDX-License-Identifier: GPL-2.0+
12 #include <asm/m5329.h>
13 #include <asm/immap_5329.h>
16 /* needed for astro bus: */
20 DECLARE_GLOBAL_DATA_PTR
;
21 extern void uart_port_conf(void);
26 puts("ASTRO MCF5373L (Urmel) Board\n");
30 phys_size_t
initdram(int board_type
)
32 #if !defined(CONFIG_MONITOR_IS_IN_RAM)
33 sdram_t
*sdp
= (sdram_t
*)(MMAP_SDRAM
);
36 * GPIO configuration for bus should be set correctly from reset,
37 * so we do not care! First, set up address space: at this point,
38 * we should be running from internal SRAM;
39 * so use CONFIG_SYS_SDRAM_BASE as the base address for SDRAM,
40 * and do not care where it is
42 __raw_writel((CONFIG_SYS_SDRAM_BASE
& 0xFFF00000) | 0x00000018,
44 __raw_writel((CONFIG_SYS_SDRAM_BASE
& 0xFFF00000) | 0x00000000,
47 * I am not sure from the data sheet, but it seems burst length
48 * has to be 8 for the 16 bit data bus we use;
49 * so these values are for BL = 8
51 __raw_writel(0x33211530, &sdp
->cfg1
);
52 __raw_writel(0x56570000, &sdp
->cfg2
);
53 /* send PrechargeALL, REF and IREF remain cleared! */
54 __raw_writel(0xE1462C02, &sdp
->ctrl
);
56 /* refresh SDRAM twice */
57 __raw_writel(0xE1462C04, &sdp
->ctrl
);
59 __raw_writel(0xE1462C04, &sdp
->ctrl
);
61 __raw_writel(0x008D0000, &sdp
->mode
);
63 __raw_writel(0x80010000, &sdp
->mode
);
64 /* wait until DLL is locked */
67 * enable automatic refresh, lock mode register,
68 * clear iref and ipall
70 __raw_writel(0x71462C00, &sdp
->ctrl
);
71 /* Dummy write to start SDRAM */
72 writel(0, CONFIG_SYS_SDRAM_BASE
);
76 * for get_ram_size() to work, both CS areas have to be
77 * configured, i.e. CS1 has to be explicitely disabled, else
78 * probing for memory will cause the SDRAM bus to hang!
79 * (Do not rely on the SDCS register(s) being set to 0x00000000
80 * during reset as stated in the data sheet.)
82 return get_ram_size((unsigned long *)CONFIG_SYS_SDRAM_BASE
,
83 0x80000000 - CONFIG_SYS_SDRAM_BASE
);
86 #define UART_BASE MMAP_UART0
87 int rs_serial_init(int port
, int baud
)
94 uart
= (uart_t
*)(MMAP_UART0
);
97 uart
= (uart_t
*)(MMAP_UART1
);
100 uart
= (uart_t
*)(MMAP_UART2
);
103 uart
= (uart_t
*)(MMAP_UART0
);
108 /* write to SICR: SIM2 = uart mode,dcd does not affect rx */
109 writeb(UART_UCR_RESET_RX
, &uart
->ucr
);
110 writeb(UART_UCR_RESET_TX
, &uart
->ucr
);
111 writeb(UART_UCR_RESET_ERROR
, &uart
->ucr
);
112 writeb(UART_UCR_RESET_MR
, &uart
->ucr
);
115 writeb(0, &uart
->uimr
);
117 /* write to CSR: RX/TX baud rate from timers */
118 writeb(UART_UCSR_RCS_SYS_CLK
| UART_UCSR_TCS_SYS_CLK
, &uart
->ucsr
);
120 writeb(UART_UMR_BC_8
| UART_UMR_PM_NONE
, &uart
->umr
);
121 writeb(UART_UMR_SB_STOP_BITS_1
, &uart
->umr
);
123 /* Setting up BaudRate */
124 counter
= (u32
) (gd
->bus_clk
/ (baud
));
127 /* write to CTUR: divide counter upper byte */
128 writeb((u8
) ((counter
& 0xff00) >> 8), &uart
->ubg1
);
129 /* write to CTLR: divide counter lower byte */
130 writeb((u8
) (counter
& 0x00ff), &uart
->ubg2
);
132 writeb(UART_UCR_RX_ENABLED
| UART_UCR_TX_ENABLED
, &uart
->ucr
);
137 void astro_put_char(char ch
)
142 uart
= (uart_t
*)(MMAP_UART0
);
144 * Wait for last character to go. Timeout of 6ms should
145 * be enough for our lowest baud rate of 2400.
147 timer
= get_timer(0);
148 while (get_timer(timer
) < 6) {
149 if (readb(&uart
->usr
) & UART_USR_TXRDY
)
152 writeb(ch
, &uart
->utb
);
157 int astro_is_char(void)
161 uart
= (uart_t
*)(MMAP_UART0
);
162 return readb(&uart
->usr
) & UART_USR_RXRDY
;
165 int astro_get_char(void)
169 uart
= (uart_t
*)(MMAP_UART0
);
170 while (!(readb(&uart
->usr
) & UART_USR_RXRDY
)) ;
171 return readb(&uart
->urb
);
174 int misc_init_r(void)
178 puts("Configure Xilinx FPGA...");
179 retval
= astro5373l_xilinx_load();
186 puts("Configure Altera FPGA...");
187 retval
= astro5373l_altera_load();