microblaze-generic.c 2.2 KB
Newer Older
M
Michal Simek 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * (C) Copyright 2007 Michal Simek
 *
 * Michal  SIMEK <monstr@monstr.eu>
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

/* This is a board specific file.  It's OK to include board specific
 * header files */

#include <common.h>
M
Michal Simek 已提交
29
#include <config.h>
30
#include <netdev.h>
M
Michal Simek 已提交
31 32
#include <asm/microblaze_intc.h>
#include <asm/asm.h>
M
Michal Simek 已提交
33

34
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
M
Michal Simek 已提交
35
{
36 37 38
#ifdef CONFIG_SYS_GPIO_0
	*((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)) =
	    ++(*((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)));
M
Michal Simek 已提交
39
#endif
40
#ifdef CONFIG_SYS_RESET_ADDRESS
M
Michal Simek 已提交
41 42 43
	puts ("Reseting board\n");
	asm ("bra r0");
#endif
44
	return 0;
M
Michal Simek 已提交
45 46 47 48
}

int gpio_init (void)
{
49 50
#ifdef CONFIG_SYS_GPIO_0
	*((unsigned long *)(CONFIG_SYS_GPIO_0_ADDR)) = 0xFFFFFFFF;
M
Michal Simek 已提交
51 52 53
#endif
	return 0;
}
M
Michal Simek 已提交
54

55
#ifdef CONFIG_SYS_FSL_2
M
Michal Simek 已提交
56 57
void fsl_isr2 (void *arg) {
	volatile int num;
58 59
	*((unsigned int *)(CONFIG_SYS_GPIO_0_ADDR + 0x4)) =
	    ++(*((unsigned int *)(CONFIG_SYS_GPIO_0_ADDR + 0x4)));
M
Michal Simek 已提交
60 61 62 63 64
	GET (num, 2);
	NGET (num, 2);
	puts("*");
}

65
int fsl_init2 (void) {
M
Michal Simek 已提交
66
	puts("fsl_init2\n");
67 68
	install_interrupt_handler (FSL_INTR_2, fsl_isr2, NULL);
	return 0;
M
Michal Simek 已提交
69 70
}
#endif
71 72 73

int board_eth_init(bd_t *bis)
{
74
	int ret = 0;
75
#ifdef CONFIG_XILINX_EMACLITE
76 77 78 79 80 81 82 83 84 85
	u32 txpp = 0;
	u32 rxpp = 0;
# ifdef CONFIG_XILINX_EMACLITE_TX_PING_PONG
	txpp = 1;
# endif
# ifdef CONFIG_XILINX_EMACLITE_RX_PING_PONG
	rxpp = 1;
# endif
	ret |= xilinx_emaclite_initialize(bis, XILINX_EMACLITE_BASEADDR,
			txpp, rxpp);
86
#endif
87
	return ret;
88
}