]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/psyent/pk1c20/pk1c20.c
mx6sxsabresd: Add Ethernet support
[karo-tx-uboot.git] / board / psyent / pk1c20 / pk1c20.c
1 /*
2  * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3  * Scott McNutt <smcnutt@psyent.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <netdev.h>
10
11 int board_early_init_f (void)
12 {
13         return 0;
14 }
15
16 int checkboard (void)
17 {
18         puts ("BOARD : Psyent PK-1C20\n");
19         return 0;
20 }
21
22 phys_size_t initdram (int board_type)
23 {
24         return (0);
25 }
26
27 #ifdef CONFIG_CMD_NET
28 int 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