mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* Linux does not boot, unrecognized/unsupported machine ID (r1 = 0x00000000).
@ 2016-03-08  9:18 gianluca
  2016-03-09  7:42 ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: gianluca @ 2016-03-08  9:18 UTC (permalink / raw)
  To: barebox

[-- Attachment #1: Type: text/plain, Size: 2413 bytes --]

Hello list,
here I am (again!) ;-)

Now I have downloaded the linux 4.5-rc6 (because I would like to use 
etnaviv gpu driver), configured as imx_v6_v7_defconfig, added the 
DEBUG_LL stuff for uart3 and added in the Makefile for dts my dts (more 
or less like Barebox one [in attachment] ), but here is what I get 
(compiling the kernel with DEBUG_LL for uart3):

> barebox 2016.02.0 #1 Mon Mar 7 13:15:11 CET 2016
>
>
> Board: EK360 Eurek i.MX6 Quad
> detected i.MX6 Quad revision 1.5
> mdio_bus: miibus0: probed
> imx-usb 2184200.usb: USB EHCI 1.00
> imx-esdhc 2194000.usdhc: registered as 2194000.usdhc
> imx-esdhc 2198000.usdhc: registered as 2198000.usdhc
> imx-esdhc 219c000.usdhc: registered as 219c000.usdhc
> imx-ipuv3 2400000.ipu: IPUv3H probed
> imx-ipuv3 2800000.ipu: IPUv3H probed
> netconsole: registered as netconsole-1
> malloc space: 0x2ff7c160 -> 0x4fef82bf (size 511.5 MiB)
> environment load /dev/env0: No such file or directory
> Maybe you have to create the partition.
> running /env/bin/init...
> mmc2: detected SD card version 2.0
> mmc2: registered mmc2
> ext4 ext40: EXT2 rev 1, inode_size 128
> Hit CTRL-C key to stop autoboot: 1
> Running boot from uSD/MMC or USB...
> Booting...
>     Image Name:   Linux-4.5.0-rc6-EK20160302
>     Created:      2016-03-07 12:30:32 UTC
>     OS:           Linux
>     Architecture: ARM
>     Type:         Kernel Image
>     Compression:  uncompressed
>     Data Size:    6636352 Bytes = 6.3 MiB
>     Load Address: 10008000
>     Entry Point:  10008000
>
> Loading U-Boot uImage '/mnt/uImage'
> Loading devicetree from '/mnt/dtb'
> commandline: console=ttymxc2,115200 rootwait noswap ip=none noinitrd rootfstype=nilfs2 root=/dev/mmcblk2p3 fec.macaddr=0x7a,0x3f,0x03,0xe3,0xa2,0xff
> Uncompressing Linux... done, booting the kernel.
>
> Error: unrecognized/unsupported machine ID (r1 = 0x00000000).
>
> Available machine support:
>
> ID (hex) NAME
> ffffffff Generic DT based system
> ffffffff Freescale i.MX6 Quad/DualLite (Device Tree)
>
> Please check your kernel config and/or bootloader.

It looks like something were wrong with devicetree or other machine 
identifier stuff...


Where is the issue???

Regards,
-- 
Eurek s.r.l.                          |
Electronic Engineering                | http://www.eurek.it
via Celletta 8/B, 40026 Imola, Italy  | Phone: +39-(0)542-609120
p.iva 00690621206 - c.f. 04020030377  | Fax:   +39-(0)542-609212

[-- Attachment #2: imx6q-eurek-ek360.dts --]
[-- Type: text/plain, Size: 7720 bytes --]

/*
 * $Id: imx6q-eurek-ek360.dts,v 1.5 2016/03/04 16:22:24 gianluca Exp $
 *
 * Copyright 2016 Gianluca Renzi, Eurek Elettronica S.R.L.
 * Copyright 2014 Raphaël Poggi
 * Copyright 2012 Freescale Semiconductor, Inc.
 * Copyright 2011 Linaro Ltd.
 *
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */
/dts-v1/;
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include "imx6q.dtsi"

/ {
	model = "EK360 Eurek i.MX6 Quad";
	compatible = "eurek,ek360", "fsl,imx6q";

	chosen {
		linux,stdout-path = &uart3;
	};

	memory {
		reg = <0x10000000 0x40000000>;
	};

	regulators {
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <0>;

		reg_2p5v: regulator@0 {
			compatible = "regulator-fixed";
			reg = <0>;
			regulator-name = "2P5V";
			regulator-min-microvolt = <2500000>;
			regulator-max-microvolt = <2500000>;
			regulator-always-on;
		};

		reg_3p3v: regulator@1 {
			compatible = "regulator-fixed";
			reg = <1>;
			regulator-name = "3P3V";
			regulator-min-microvolt = <3300000>;
			regulator-max-microvolt = <3300000>;
			regulator-always-on;
		};

		reg_usb_otg_vbus: regulator@2 {
			compatible = "regulator-fixed";
			reg = <2>;
			regulator-name = "usb_otg_vbus";
			regulator-min-microvolt = <5000000>;
			regulator-max-microvolt = <5000000>;
			gpio = <&gpio3 22 GPIO_ACTIVE_LOW>;
			enable-active-low;
		};

		reg_usb_h1_vbus: regulator@3 {
			compatible = "regulator-fixed";
			reg = <3>;
			regulator-name = "usb_h1_vbus";
			regulator-min-microvolt = <5000000>;
			regulator-max-microvolt = <5000000>;
			gpio = <&gpio3 31 GPIO_ACTIVE_LOW>;
			enable-active-low;
		};
	};
};

&iomuxc {
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_uart3>;
	imx6q-ek380 {
		pinctrl_uart1: uart1grp {
			/* RS232 port */
			fsl,pins = <
				MX6QDL_PAD_CSI0_DAT10__UART1_TX_DATA	0x1b0b1
				MX6QDL_PAD_CSI0_DAT11__UART1_RX_DATA	0x1b0b1
			>;
		};

		pinctrl_uart2: uart2grp {
			/* RS485 port */
			fsl,pins = <
				MX6QDL_PAD_EIM_D26__UART2_TX_DATA	0x1b0b1
				MX6QDL_PAD_EIM_D27__UART2_RX_DATA	0x1b0b1
				/* UART2_DIR */
				MX6QDL_PAD_EIM_D18__GPIO3_IO18		0x80000000
			>;
		};

		pinctrl_uart3: uart3grp {
			/* debug port, serial console */
			fsl,pins = <
				MX6QDL_PAD_EIM_D24__UART3_TX_DATA 0x1b0b1
				MX6QDL_PAD_EIM_D25__UART3_RX_DATA 0x1b0b1
			>;
		};

		pinctrl_usdhc2: usdhc2grp {
			/* SDIO / WiFi Module */
			fsl,pins = <
				MX6QDL_PAD_SD2_CMD__SD2_CMD			0x17059
				MX6QDL_PAD_SD2_CLK__SD2_CLK			0x10059
				MX6QDL_PAD_SD2_DAT0__SD2_DATA0		0x17059
				MX6QDL_PAD_SD2_DAT1__SD2_DATA1		0x17059
				MX6QDL_PAD_SD2_DAT2__SD2_DATA2		0x17059
				MX6QDL_PAD_SD2_DAT3__SD2_DATA3		0x17059
				/* SD2_EN */
				MX6QDL_PAD_NANDF_D3__GPIO2_IO03		0x1f071
			>;
		};

		pinctrl_usdhc3: usdhc3grp {
			/* uSD/MMC */
			fsl,pins = <
				MX6QDL_PAD_SD3_CMD__SD3_CMD			0x17059
				MX6QDL_PAD_SD3_CLK__SD3_CLK			0x10059
				MX6QDL_PAD_SD3_DAT0__SD3_DATA0		0x17059
				MX6QDL_PAD_SD3_DAT1__SD3_DATA1		0x17059
				MX6QDL_PAD_SD3_DAT2__SD3_DATA2		0x17059
				MX6QDL_PAD_SD3_DAT3__SD3_DATA3		0x17059
				/* SD3_CD */
				MX6QDL_PAD_NANDF_D0__GPIO2_IO00		0x1f071
				/* SD3_WP */
				MX6QDL_PAD_NANDF_D1__GPIO2_IO01		0x1f071
			>;
		};

		pinctrl_usdhc4: usdhc4grp {
			/* eMMC */
			fsl,pins = <
				MX6QDL_PAD_SD4_CMD__SD4_CMD			0x17059
				MX6QDL_PAD_SD4_CLK__SD4_CLK			0x10059
				MX6QDL_PAD_SD4_DAT0__SD4_DATA0		0x17059
				MX6QDL_PAD_SD4_DAT1__SD4_DATA1		0x17059
				MX6QDL_PAD_SD4_DAT2__SD4_DATA2		0x17059
				MX6QDL_PAD_SD4_DAT3__SD4_DATA3		0x17059
				MX6QDL_PAD_SD4_DAT4__SD4_DATA4		0x17059
				MX6QDL_PAD_SD4_DAT5__SD4_DATA5		0x17059
				MX6QDL_PAD_SD4_DAT6__SD4_DATA6		0x17059
				MX6QDL_PAD_SD4_DAT7__SD4_DATA7		0x17059
			>;
		};

		pinctrl_i2c1: i2c1grp {
			fsl,pins = <
				MX6QDL_PAD_CSI0_DAT8__I2C1_SDA		0x4001b8b1
				MX6QDL_PAD_CSI0_DAT9__I2C1_SCL		0x4001b8b1
			>;
		};

		pinctrl_i2c2: i2c2grp {
			fsl,pins = <
				MX6QDL_PAD_KEY_ROW3__I2C2_SDA		0x4001b8b1
				MX6QDL_PAD_KEY_COL3__I2C2_SCL		0x4001b8b1
			>;
		};

		pinctrl_i2c3: i2c3grp {
			fsl,pins = <
				MX6QDL_PAD_GPIO_6__I2C3_SDA			0x4001b8b1
				MX6QDL_PAD_GPIO_3__I2C3_SCL			0x4001b8b1
			>;
		};

		pinctrl_usbotg_id: usbotggrp_id {
			fsl,pins = <
				MX6QDL_PAD_GPIO_1__USB_OTG_ID		0x17059
			>;
		};

		pinctrl_enet: enetgrp {
			fsl,pins = <
				MX6QDL_PAD_RGMII_RXC__RGMII_RXC			0x1b0b0
				MX6QDL_PAD_RGMII_RD0__RGMII_RD0			0x1b0b0
				MX6QDL_PAD_RGMII_RD1__RGMII_RD1			0x1b0b0
				MX6QDL_PAD_RGMII_RD2__RGMII_RD2			0x1b0b0
				MX6QDL_PAD_RGMII_RD3__RGMII_RD3			0x1b0b0
				MX6QDL_PAD_RGMII_RX_CTL__RGMII_RX_CTL	0x1b0b0
				MX6QDL_PAD_RGMII_TXC__RGMII_TXC			0x1b0b0
				MX6QDL_PAD_RGMII_TD0__RGMII_TD0			0x1b0b0
				MX6QDL_PAD_RGMII_TD1__RGMII_TD1			0x1b0b0
				MX6QDL_PAD_RGMII_TD2__RGMII_TD2			0x1b0b0
				MX6QDL_PAD_RGMII_TD3__RGMII_TD3			0x1b0b0
				MX6QDL_PAD_RGMII_TX_CTL__RGMII_TX_CTL	0x1b0b0
				MX6QDL_PAD_ENET_REF_CLK__ENET_TX_CLK	0x1b0b0
				MX6QDL_PAD_ENET_MDIO__ENET_MDIO			0x1b0b0
				MX6QDL_PAD_ENET_MDC__ENET_MDC			0x1b0b0
				MX6QDL_PAD_EIM_D23__GPIO3_IO23		0x80000000 /* KSZ9031 PHY Reset */
			>;
		};

		pinctrl_usbh1_oc: usbh1_oc {
			fsl,pins = <
				MX6QDL_PAD_EIM_D30__USB_H1_OC		0x00000000 /* USB_H1_OC Daisy = 0 default */
			>;
		};

		pinctrl_usbotg_oc: usbotg_oc {
			fsl,pins = <
				MX6QDL_PAD_EIM_D21__USB_OTG_OC		0x00000004 /* USB_OTG_OC ALT4 — Select signal USB_OTG_OC. */
			>;
		};

		pinctrl_hog: hog {
			fsl,pins = <
				MX6QDL_PAD_EIM_D22__GPIO3_IO22		0x80000000 /* USB OTG PWR EN */
				MX6QDL_PAD_EIM_D31__GPIO3_IO31		0x80000000 /* USB H1 PWR EN */
			>;
		};

	};
};

&fec {
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_enet>;
	phy-mode = "rgmii";
	phy-reset-gpios = <&gpio3 23 GPIO_ACTIVE_HIGH>;
	phy-reset-duration = <100>;
	status = "okay";
};

&uart1 {
	/* RS-232C Port */
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_uart1>;
	status = "okay";
};

&uart2 {
	/* RS-485 Port */
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_uart2>;
	status = "okay";
};

&uart3 {
	/* Debug port / console */
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_uart3>;
	status = "okay";
};

&usdhc2 {
	/* WiFi SDIO */
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_usdhc2>;
	status = "okay";
};

&usdhc3 {
	/* uSD / MMC */
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_usdhc3>;
	cd-gpios = <&gpio2 0 0>;
	wp-gpios = <&gpio2 1 0>;
	status = "okay";
};

&usdhc4 {
	/* eMMC */
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_usdhc4>;
	non-removable;
	status = "okay";
};

&i2c1 {
	clock-frequency = <100000>;
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_i2c1>;
	status = "okay";

	sgtl5000@0a {
		compatible = "fsl,sgtl5000";
		reg = <0x0a>;
		clocks = <&clks 201>;
		VDDA-supply = <&reg_3p3v>;
		VDDIO-supply = <&reg_3p3v>;
	};

	at24@50 {
		compatible = "at24,24c64";
		pagesize = <64>;
		reg = <0x50>;
	};

	pcf8563: rtc@51 {
		compatible = "phg,pcf8563";
		reg = <0x51>;
	};
};

&i2c2 {
	clock-frequency = <100000>;
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_i2c2>;
	status = "okay";
};

&i2c3 {
	clock-frequency = <100000>;
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_i2c3>;
	status = "okay";
};

&usbh1 {
	vbus-supply = <&reg_usb_h1_vbus>;
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_usbh1_oc>;
	dr_mode = "host";
	status = "okay";
};

&usbotg {
	vbus-supply = <&reg_usb_otg_vbus>;
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_usbotg_oc
				&pinctrl_usbotg_id>;
	dr_mode = "otg";
	status = "okay";
};

&hdmi {
	ddc-i2c-bus = <&i2c2>;
	status = "okay";
};

[-- Attachment #3: Type: text/plain, Size: 149 bytes --]

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Linux does not boot, unrecognized/unsupported machine ID (r1 = 0x00000000).
  2016-03-08  9:18 Linux does not boot, unrecognized/unsupported machine ID (r1 = 0x00000000) gianluca
@ 2016-03-09  7:42 ` Sascha Hauer
  2016-03-10  8:57   ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2016-03-09  7:42 UTC (permalink / raw)
  To: gianluca; +Cc: barebox

Hi,

On Tue, Mar 08, 2016 at 10:18:07AM +0100, gianluca wrote:
> Hello list,
> here I am (again!) ;-)
> 
> Now I have downloaded the linux 4.5-rc6 (because I would like to use etnaviv
> gpu driver), configured as imx_v6_v7_defconfig, added the DEBUG_LL stuff for
> uart3 and added in the Makefile for dts my dts (more or less like Barebox
> one [in attachment] ), but here is what I get (compiling the kernel with
> DEBUG_LL for uart3):
> 
> >barebox 2016.02.0 #1 Mon Mar 7 13:15:11 CET 2016
> >
> >
> >Board: EK360 Eurek i.MX6 Quad
> >detected i.MX6 Quad revision 1.5
> >mdio_bus: miibus0: probed
> >imx-usb 2184200.usb: USB EHCI 1.00
> >imx-esdhc 2194000.usdhc: registered as 2194000.usdhc
> >imx-esdhc 2198000.usdhc: registered as 2198000.usdhc
> >imx-esdhc 219c000.usdhc: registered as 219c000.usdhc
> >imx-ipuv3 2400000.ipu: IPUv3H probed
> >imx-ipuv3 2800000.ipu: IPUv3H probed
> >netconsole: registered as netconsole-1
> >malloc space: 0x2ff7c160 -> 0x4fef82bf (size 511.5 MiB)
> >environment load /dev/env0: No such file or directory
> >Maybe you have to create the partition.
> >running /env/bin/init...
> >mmc2: detected SD card version 2.0
> >mmc2: registered mmc2
> >ext4 ext40: EXT2 rev 1, inode_size 128
> >Hit CTRL-C key to stop autoboot: 1
> >Running boot from uSD/MMC or USB...
> >Booting...
> >    Image Name:   Linux-4.5.0-rc6-EK20160302
> >    Created:      2016-03-07 12:30:32 UTC
> >    OS:           Linux
> >    Architecture: ARM
> >    Type:         Kernel Image
> >    Compression:  uncompressed
> >    Data Size:    6636352 Bytes = 6.3 MiB
> >    Load Address: 10008000
> >    Entry Point:  10008000
> >
> >Loading U-Boot uImage '/mnt/uImage'
> >Loading devicetree from '/mnt/dtb'
> >commandline: console=ttymxc2,115200 rootwait noswap ip=none noinitrd rootfstype=nilfs2 root=/dev/mmcblk2p3 fec.macaddr=0x7a,0x3f,0x03,0xe3,0xa2,0xff
> >Uncompressing Linux... done, booting the kernel.
> >
> >Error: unrecognized/unsupported machine ID (r1 = 0x00000000).

Looks like the device tree is not actually used. Could you boot with -v
please? Also, could you try a zImage instead of a uImage? Last not
least, does the problem persist on current barebox master?

Sascha


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Linux does not boot, unrecognized/unsupported machine ID (r1 = 0x00000000).
  2016-03-09  7:42 ` Sascha Hauer
@ 2016-03-10  8:57   ` Sascha Hauer
  0 siblings, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2016-03-10  8:57 UTC (permalink / raw)
  To: gianluca; +Cc: barebox

On Wed, Mar 09, 2016 at 08:42:03AM +0100, Sascha Hauer wrote:
> Hi,
> 
> On Tue, Mar 08, 2016 at 10:18:07AM +0100, gianluca wrote:
> > Hello list,
> > here I am (again!) ;-)
> > 
> > Now I have downloaded the linux 4.5-rc6 (because I would like to use etnaviv
> > gpu driver), configured as imx_v6_v7_defconfig, added the DEBUG_LL stuff for
> > uart3 and added in the Makefile for dts my dts (more or less like Barebox
> > one [in attachment] ), but here is what I get (compiling the kernel with
> > DEBUG_LL for uart3):
> > 
> > >barebox 2016.02.0 #1 Mon Mar 7 13:15:11 CET 2016
> > >
> > >
> > >Board: EK360 Eurek i.MX6 Quad
> > >detected i.MX6 Quad revision 1.5
> > >mdio_bus: miibus0: probed
> > >imx-usb 2184200.usb: USB EHCI 1.00
> > >imx-esdhc 2194000.usdhc: registered as 2194000.usdhc
> > >imx-esdhc 2198000.usdhc: registered as 2198000.usdhc
> > >imx-esdhc 219c000.usdhc: registered as 219c000.usdhc
> > >imx-ipuv3 2400000.ipu: IPUv3H probed
> > >imx-ipuv3 2800000.ipu: IPUv3H probed
> > >netconsole: registered as netconsole-1
> > >malloc space: 0x2ff7c160 -> 0x4fef82bf (size 511.5 MiB)
> > >environment load /dev/env0: No such file or directory
> > >Maybe you have to create the partition.
> > >running /env/bin/init...
> > >mmc2: detected SD card version 2.0
> > >mmc2: registered mmc2
> > >ext4 ext40: EXT2 rev 1, inode_size 128
> > >Hit CTRL-C key to stop autoboot: 1
> > >Running boot from uSD/MMC or USB...
> > >Booting...
> > >    Image Name:   Linux-4.5.0-rc6-EK20160302
> > >    Created:      2016-03-07 12:30:32 UTC
> > >    OS:           Linux
> > >    Architecture: ARM
> > >    Type:         Kernel Image
> > >    Compression:  uncompressed
> > >    Data Size:    6636352 Bytes = 6.3 MiB
> > >    Load Address: 10008000
> > >    Entry Point:  10008000
> > >
> > >Loading U-Boot uImage '/mnt/uImage'
> > >Loading devicetree from '/mnt/dtb'
> > >commandline: console=ttymxc2,115200 rootwait noswap ip=none noinitrd rootfstype=nilfs2 root=/dev/mmcblk2p3 fec.macaddr=0x7a,0x3f,0x03,0xe3,0xa2,0xff
> > >Uncompressing Linux... done, booting the kernel.
> > >
> > >Error: unrecognized/unsupported machine ID (r1 = 0x00000000).
> 
> Looks like the device tree is not actually used. Could you boot with -v
> please? Also, could you try a zImage instead of a uImage? Last not
> least, does the problem persist on current barebox master?

Ok, I just reproduced the problem here with barebox-2016.02.0. It is
fixed in master.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-03-10  8:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-08  9:18 Linux does not boot, unrecognized/unsupported machine ID (r1 = 0x00000000) gianluca
2016-03-09  7:42 ` Sascha Hauer
2016-03-10  8:57   ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox