]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/renesas/rsk7203/rsk7203.c
sh: add common dram_init() function for all boards
[people/ms/u-boot.git] / board / renesas / rsk7203 / rsk7203.c
CommitLineData
c655fad0
NI
1/*
2 * Copyright (C) 2008 Nobuhiro Iwamatsu
3 * Copyright (C) 2008 Renesas Solutions Corp.
4 *
5 * u-boot/board/rsk7203/rsk7203.c
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
c655fad0
NI
8 */
9
10#include <common.h>
a794f59a 11#include <net.h>
736fead8 12#include <netdev.h>
c655fad0
NI
13#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{
24 return 0;
25}
26
c655fad0
NI
27void led_set_state(unsigned short value)
28{
29}
ce9f99dd
NI
30
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 */
736fead8 39u32 pkt_data_pull(struct eth_device *dev, u32 addr)
ce9f99dd 40{
736fead8 41 volatile u16 *addr_16 = (u16 *)(dev->iobase + addr);
ce9f99dd
NI
42 return (u32)((swab16(*addr_16) << 16) & 0xFFFF0000)\
43 | swab16(*(addr_16 + 1));
44}
45
736fead8 46void pkt_data_push(struct eth_device *dev, u32 addr, u32 val)
ce9f99dd 47{
736fead8 48 addr += dev->iobase;
ce9f99dd
NI
49 *(volatile u16 *)(addr + 2) = swab16((u16)val);
50 *(volatile u16 *)(addr) = swab16((u16)(val >> 16));
51}
736fead8
BW
52
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}