blob: befbb3a3e59afb4e1c4a1326da2fdeeb835938b3 [file] [log] [blame]
Michal Simek952d5142007-03-11 13:42:58 +01001/*
2 * (C) Copyright 2007 Michal Simek
3 *
4 * Michal SIMEK <monstr@monstr.eu>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25/* This is a board specific file. It's OK to include board specific
26 * header files */
27
28#include <common.h>
Michal Simekdda9bd82007-03-30 22:52:09 +020029#include <config.h>
Michal Simek7f581f02010-08-02 14:42:09 +020030#include <netdev.h>
Michal Simek9cabb362012-07-04 13:12:37 +020031#include <asm/processor.h>
Michal Simek9c817f82007-05-07 19:33:51 +020032#include <asm/microblaze_intc.h>
33#include <asm/asm.h>
Michal Simek952d5142007-03-11 13:42:58 +010034
Mike Frysinger6d1f6982010-10-20 03:41:17 -040035int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Michal Simek952d5142007-03-11 13:42:58 +010036{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020037#ifdef CONFIG_SYS_GPIO_0
38 *((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)) =
39 ++(*((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)));
Michal Simek952d5142007-03-11 13:42:58 +010040#endif
Michal Simek25d20af2012-11-02 09:33:05 +010041
Michal Simek80e045f2013-04-22 11:23:16 +020042#ifdef CONFIG_XILINX_TB_WATCHDOG
43 hw_watchdog_disable();
44#endif
45
Michal Simek952d5142007-03-11 13:42:58 +010046 puts ("Reseting board\n");
Michal Simekc9446872012-11-07 15:27:39 +010047 __asm__ __volatile__ (" mts rmsr, r0;" \
48 "bra r0");
Michal Simek25d20af2012-11-02 09:33:05 +010049
Mike Frysinger6d1f6982010-10-20 03:41:17 -040050 return 0;
Michal Simek952d5142007-03-11 13:42:58 +010051}
52
53int gpio_init (void)
54{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020055#ifdef CONFIG_SYS_GPIO_0
56 *((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)) = 0xFFFFFFFF;
Michal Simek952d5142007-03-11 13:42:58 +010057#endif
58 return 0;
59}
Michal Simek9c817f82007-05-07 19:33:51 +020060
Michal Simek9cabb362012-07-04 13:12:37 +020061void board_init(void)
62{
63 gpio_init();
Michal Simek9cabb362012-07-04 13:12:37 +020064}
65
Michal Simek7f581f02010-08-02 14:42:09 +020066int board_eth_init(bd_t *bis)
67{
Michal Simeka6745b82011-10-12 23:23:22 +000068 int ret = 0;
Michal Simek7a88e3a2011-08-31 11:51:50 +020069
70#ifdef CONFIG_XILINX_AXIEMAC
71 ret |= xilinx_axiemac_initialize(bis, XILINX_AXIEMAC_BASEADDR,
72 XILINX_AXIDMA_BASEADDR);
73#endif
74
Michal Simek7f581f02010-08-02 14:42:09 +020075#ifdef CONFIG_XILINX_EMACLITE
Michal Simeka6745b82011-10-12 23:23:22 +000076 u32 txpp = 0;
77 u32 rxpp = 0;
78# ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
79 txpp = 1;
80# endif
81# ifdef CONFIG_XILINX_EMACLITE_RX_PING_PONG
82 rxpp = 1;
83# endif
84 ret |= xilinx_emaclite_initialize(bis, XILINX_EMACLITE_BASEADDR,
85 txpp, rxpp);
Michal Simek7f581f02010-08-02 14:42:09 +020086#endif
Stephan Linzda949bc2012-02-25 00:48:34 +000087
88#ifdef CONFIG_XILINX_LL_TEMAC
89# ifdef XILINX_LLTEMAC_BASEADDR
90# ifdef XILINX_LLTEMAC_FIFO_BASEADDR
91 ret |= xilinx_ll_temac_eth_init(bis, XILINX_LLTEMAC_BASEADDR,
92 XILINX_LL_TEMAC_M_FIFO, XILINX_LLTEMAC_FIFO_BASEADDR);
93# elif XILINX_LLTEMAC_SDMA_CTRL_BASEADDR
94# if XILINX_LLTEMAC_SDMA_USE_DCR == 1
95 ret |= xilinx_ll_temac_eth_init(bis, XILINX_LLTEMAC_BASEADDR,
96 XILINX_LL_TEMAC_M_SDMA_DCR,
97 XILINX_LLTEMAC_SDMA_CTRL_BASEADDR);
98# else
99 ret |= xilinx_ll_temac_eth_init(bis, XILINX_LLTEMAC_BASEADDR,
100 XILINX_LL_TEMAC_M_SDMA_PLB,
101 XILINX_LLTEMAC_SDMA_CTRL_BASEADDR);
102# endif
103# endif
104# endif
105# ifdef XILINX_LLTEMAC_BASEADDR1
106# ifdef XILINX_LLTEMAC_FIFO_BASEADDR1
107 ret |= xilinx_ll_temac_eth_init(bis, XILINX_LLTEMAC_BASEADDR1,
108 XILINX_LL_TEMAC_M_FIFO, XILINX_LLTEMAC_FIFO_BASEADDR1);
109# elif XILINX_LLTEMAC_SDMA_CTRL_BASEADDR1
110# if XILINX_LLTEMAC_SDMA_USE_DCR == 1
111 ret |= xilinx_ll_temac_eth_init(bis, XILINX_LLTEMAC_BASEADDR1,
112 XILINX_LL_TEMAC_M_SDMA_DCR,
113 XILINX_LLTEMAC_SDMA_CTRL_BASEADDR1);
114# else
115 ret |= xilinx_ll_temac_eth_init(bis, XILINX_LLTEMAC_BASEADDR1,
116 XILINX_LL_TEMAC_M_SDMA_PLB,
117 XILINX_LLTEMAC_SDMA_CTRL_BASEADDR1);
118# endif
119# endif
120# endif
121#endif
122
Michal Simeka6745b82011-10-12 23:23:22 +0000123 return ret;
Michal Simek7f581f02010-08-02 14:42:09 +0200124}