Commit
0ff65eb99c3ed4d452b9c74dae8c4f736d92303f
Exists in
v2017.01-smarct4x
and in
38 other branches
8qm-imx_v2020.04_5.4.70_2.3.0, emb_lf_v2022.04, emb_lf_v2023.04, imx_v2015.04_4.1.15_1.0.0_ga, pitx_8mp_lf_v2020.04, smarc-8m-android-10.0.0_2.6.0, smarc-8m-android-11.0.0_2.0.0, smarc-8mp-android-11.0.0_2.0.0, smarc-imx6_v2018.03_4.14.98_2.0.0_ga, smarc-imx7_v2017.03_4.9.11_1.0.0_ga, smarc-imx7_v2018.03_4.14.98_2.0.0_ga, smarc-imx_v2015.04_4.1.15_1.0.0_ga, smarc-imx_v2017.03_4.9.11_1.0.0_ga, smarc-imx_v2017.03_4.9.88_2.0.0_ga, smarc-imx_v2017.03_o8.1.0_1.3.0_8m, smarc-imx_v2018.03_4.14.78_1.0.0_ga, smarc-m6.0.1_2.1.0-ga, smarc-n7.1.2_2.0.0-ga, smarc-rel_imx_4.1.15_2.0.0_ga, smarc_8m-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8m-imx_v2019.04_4.19.35_1.1.0, smarc_8m_00d0-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2019.04_4.19.35_1.1.0, smarc_8mm-imx_v2020.04_5.4.24_2.1.0, smarc_8mp_lf_v2020.04, smarc_8mq-imx_v2020.04_5.4.24_2.1.0, smarc_8mq_lf_v2020.04, ti-u-boot-2015.07, v2015.07-smarct33, v2015.07-smarct33-emmc, v2015.07-smarct4x, v2016.05-dlt, v2016.05-smarct3x, v2016.05-smarct3x-emmc, v2016.05-smarct4x, v2017.01-smarct3x, v2017.01-smarct3x-emmc
x86: crownbay: Enable Intel E1000 NIC support
We don't have driver for the Intel Topcliff PCH Gigabit Ethernet
controller for now, so enable the Intle E1000 NIC support, which
can be plugged into any PCIe slot on the Crown Bay board.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Showing
2 changed files
with
7 additions
and
0 deletions
Side-by-side Diff
... |
... |
@@ -7,6 +7,7 @@ |
7
|
7 |
#include <common.h> |
8
|
8 |
#include <asm/ibmpc.h> |
9
|
9 |
#include <asm/pnp_def.h> |
|
10 |
+#include <netdev.h> |
10
|
11 |
#include <smsc_lpc47m.h> |
11
|
12 |
|
12
|
13 |
#define SERIAL_DEV PNP_DEV(0x2e, 4) |
... |
... |
@@ -23,5 +24,10 @@ |
23
|
24 |
void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio) |
24
|
25 |
{ |
25
|
26 |
return; |
|
27 |
+} |
|
28 |
+ |
|
29 |
+int board_eth_init(bd_t *bis) |
|
30 |
+{ |
|
31 |
+ return pci_eth_init(bis); |
26
|
32 |
} |
... |
... |
@@ -37,6 +37,7 @@ |
37
|
37 |
|
38
|
38 |
#define CONFIG_SYS_EARLY_PCI_INIT |
39
|
39 |
#define CONFIG_PCI_PNP |
|
40 |
+#define CONFIG_E1000 |
40
|
41 |
|
41
|
42 |
#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \ |
42
|
43 |
"stdout=serial\0" \ |