]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARM: rpi: only set usbethaddr on relevant systems
authorStephen Warren <swarren@wwwdotorg.org>
Sat, 6 Dec 2014 03:56:46 +0000 (20:56 -0700)
committerTom Rini <trini@ti.com>
Mon, 29 Dec 2014 21:31:22 +0000 (16:31 -0500)
Model A and CM RPis don't have an on-board USB Ethernet device. Hence,
there's no point setting $usbethaddr based on the device fuses. Use the
model detection code to gate this. Note that the fuses are actually
programmed even on those devices though.

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
board/raspberrypi/rpi/rpi.c

index 7dbd40ecf872bab2dacc12fb1931646fb64964eb..ca8e86dead6c24b737bb1b3508cddf9492a6e5f9 100644 (file)
@@ -82,58 +82,72 @@ struct msg_get_clock_rate {
 static const struct {
        const char *name;
        const char *fdtfile;
+       bool has_onboard_eth;
 } models[] = {
        [BCM2835_BOARD_REV_B_I2C0_2] = {
                "Model B (no P5)",
                "bcm2835-rpi-b-i2c0.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_B_I2C0_3] = {
                "Model B (no P5)",
                "bcm2835-rpi-b-i2c0.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_B_I2C1_4] = {
                "Model B",
                "bcm2835-rpi-b.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_B_I2C1_5] = {
                "Model B",
                "bcm2835-rpi-b.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_B_I2C1_6] = {
                "Model B",
                "bcm2835-rpi-b.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_A_7] = {
                "Model A",
                "bcm2835-rpi-a.dtb",
+               false,
        },
        [BCM2835_BOARD_REV_A_8] = {
                "Model A",
                "bcm2835-rpi-a.dtb",
+               false,
        },
        [BCM2835_BOARD_REV_A_9] = {
                "Model A",
                "bcm2835-rpi-a.dtb",
+               false,
        },
        [BCM2835_BOARD_REV_B_REV2_d] = {
                "Model B rev2",
                "bcm2835-rpi-b-rev2.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_B_REV2_e] = {
                "Model B rev2",
                "bcm2835-rpi-b-rev2.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_B_REV2_f] = {
                "Model B rev2",
                "bcm2835-rpi-b-rev2.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_B_PLUS] = {
                "Model B+",
                "bcm2835-rpi-b-plus.dtb",
+               true,
        },
        [BCM2835_BOARD_REV_CM] = {
                "Compute Module",
                "bcm2835-rpi-cm.dtb",
+               false,
        },
 };
 
@@ -177,6 +191,9 @@ static void set_usbethaddr(void)
        ALLOC_ALIGN_BUFFER(struct msg_get_mac_address, msg, 1, 16);
        int ret;
 
+       if (!models[rpi_board_rev].has_onboard_eth)
+               return;
+
        if (getenv("usbethaddr"))
                return;