blob: 0b4c9f8ac1fabfe16f7707947314768531d03067 [file] [log] [blame]
wdenk5c952cf2004-10-10 21:27:30 +00001/*
2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-10-10 21:27:30 +00006 */
7
8#include <common.h>
Ben Warren7194ab82009-10-04 22:37:03 -07009#include <netdev.h>
wdenk5c952cf2004-10-10 21:27:30 +000010
11int board_early_init_f (void)
12{
13 return 0;
14}
15
16int checkboard (void)
17{
18 puts ("BOARD : Psyent PK-1C20\n");
19 return 0;
20}
21
Becky Bruce9973e3c2008-06-09 16:03:40 -050022phys_size_t initdram (int board_type)
wdenk5c952cf2004-10-10 21:27:30 +000023{
24 return (0);
25}
Ben Warren7194ab82009-10-04 22:37:03 -070026
27#ifdef CONFIG_CMD_NET
28int board_eth_init(bd_t *bis)
29{
30 int rc = 0;
31#ifdef CONFIG_SMC91111
32 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
33#endif
34 return rc;
35}
36#endif