blob: 72c562d3e579f75b28b6c180317eb93ad728b039 [file] [log] [blame]
Nobuhiro Iwamatsu6f7d4362008-08-31 23:02:04 +09001/*
2 * Copyright (C) 2008 Nobuhiro Iwamatsu
3 * Copyright (C) 2008 Renesas Solutions Corp.
4 *
5 * u-boot/board/rsk7203/rsk7203.c
6 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu6f7d4362008-08-31 23:02:04 +09008 */
9
10#include <common.h>
Jean-Christophe PLAGNIOL-VILLARDd79a3142009-08-23 14:14:52 +020011#include <net.h>
Ben Warrenfbfdd3a2009-07-20 22:01:11 -070012#include <netdev.h>
Nobuhiro Iwamatsu6f7d4362008-08-31 23:02:04 +090013#include <asm/io.h>
14#include <asm/processor.h>
15
16int checkboard(void)
17{
18 puts("BOARD: Renesas Technology RSK7203\n");
19 return 0;
20}
21
22int board_init(void)
23{
Nobuhiro Iwamatsu6f7d4362008-08-31 23:02:04 +090024 return 0;
25}
26
27void led_set_state(unsigned short value)
28{
29}
Nobuhiro Iwamatsue9dd88e2008-08-28 13:40:52 +090030
31/*
32 * The RSK board has the SMSC9118 wired up 'incorrectly'.
33 * Byte-swapping is necessary, and so poor performance is inevitable.
34 * This problem cannot evade by the swap function of CHIP, this can
35 * evade by software Byte-swapping.
36 * And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
37 * functions necessary to solve this problem.
38 */
Ben Warrenfbfdd3a2009-07-20 22:01:11 -070039u32 pkt_data_pull(struct eth_device *dev, u32 addr)
Nobuhiro Iwamatsue9dd88e2008-08-28 13:40:52 +090040{
Ben Warrenfbfdd3a2009-07-20 22:01:11 -070041 volatile u16 *addr_16 = (u16 *)(dev->iobase + addr);
Nobuhiro Iwamatsue9dd88e2008-08-28 13:40:52 +090042 return (u32)((swab16(*addr_16) << 16) & 0xFFFF0000)\
43 | swab16(*(addr_16 + 1));
44}
45
Ben Warrenfbfdd3a2009-07-20 22:01:11 -070046void pkt_data_push(struct eth_device *dev, u32 addr, u32 val)
Nobuhiro Iwamatsue9dd88e2008-08-28 13:40:52 +090047{
Ben Warrenfbfdd3a2009-07-20 22:01:11 -070048 addr += dev->iobase;
Nobuhiro Iwamatsue9dd88e2008-08-28 13:40:52 +090049 *(volatile u16 *)(addr + 2) = swab16((u16)val);
50 *(volatile u16 *)(addr) = swab16((u16)(val >> 16));
51}
Ben Warrenfbfdd3a2009-07-20 22:01:11 -070052
53int board_eth_init(bd_t *bis)
54{
55 int rc = 0;
56#ifdef CONFIG_SMC911X
57 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
58#endif
59 return rc;
60}