lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Wed,  8 Aug 2012 14:36:38 +0900
From:	tobetter@...il.com
To:	unlisted-recipients:; (no To-header on input)
Cc:	Dongjin Kim <dongjin.kim@...eeyamobility.net>,
	Russell King <linux@....linux.org.uk>,
	linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: [PATCH v2] arm/dts: exynos4: Add DTS file for ODROID-X

From: Dongjin Kim <dongjin.kim@...eeyamobility.net>

This patch create a DTS file for ODROID-X, it desribes PMIC max77686 and LED
gpios base.

Changes in V2:
    -. Banner changed

Signed-off-by: Dongjin Kim <dongjin.kim@...eeyamobility.net>
---
 arch/arm/boot/dts/exynos4412-odroidx.dts |  148 ++++++++++++++++++++++++++++++
 1 file changed, 148 insertions(+)
 create mode 100644 arch/arm/boot/dts/exynos4412-odroidx.dts

diff --git a/arch/arm/boot/dts/exynos4412-odroidx.dts b/arch/arm/boot/dts/exynos4412-odroidx.dts
new file mode 100644
index 0000000..1b8a7f8
--- /dev/null
+++ b/arch/arm/boot/dts/exynos4412-odroidx.dts
@@ -0,0 +1,148 @@
+/*
+ * Samsung's Exynos4210 based ODROID-X board device tree source
+ *
+ * Copyright (c) 2012 AgreeYa Mobility Co., Ltd.
+ *		http://www.agreeyamobility.net
+ * Copyright (c) 2012 Hardkernel Co., Ltd.
+ *		http://www.hardkernel.com
+ *
+ * Device tree source file for Hardkernel's ODROID-X board which is based on
+ * Samsung's Exynos4412 SoC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+*/
+
+/dts-v1/;
+/include/ "exynos4412.dtsi"
+/include/ "max77686.dtsi"
+
+/ {
+	model = "Hardkernel ODROID-X evaluation board based on Exynos4412";
+	compatible = "hardkernel,odroidx", "samsung,exynos4412";
+
+	memory {
+		reg = <0x40000000 0x40000000>;
+	};
+
+	chosen {
+		bootargs = "root=/dev/mmcblk0p1 init=/sbin/init console=ttySAC1,115200 console=tty1 rootdalay=2";
+	};
+
+	/* sdhci0 */
+	sdhci@...10000 {
+		status = "disabled";
+	};
+
+	/* sdhci1 */
+	sdhci@...20000 {
+		status = "disabled";
+	};
+
+	/* sdhci2 */
+	sdhci@...30000 {
+		samsung,sdhci-bus-width = <4>;
+		linux,mmc_cap_4_bit_data;
+		samsung,sdhci-cd-internal;
+		gpio-cd = <&gpk2 2 2 3 3>;
+		gpios = <&gpk2 0 2 0 3>,
+			<&gpk2 1 2 0 3>,
+			<&gpk2 3 2 3 3>,
+			<&gpk2 4 2 3 3>,
+			<&gpk2 5 2 3 3>,
+			<&gpk2 6 2 3 3>;
+	};
+
+	/* sdhci3 */
+	sdhci@...40000 {
+		samsung,sdhci-bus-width = <4>;
+		linux,mmc_cap_4_bit_data;
+		samsung,sdhci-cd-internal;
+		gpio-cd	= <&gpk3 2 2 3 3>;
+		gpios = <&gpk3 0 2 0 3>,
+			<&gpk3 1 2 0 3>,
+			<&gpk3 3 2 3 3>,
+			<&gpk3 4 2 3 3>,
+			<&gpk3 5 2 3 3>,
+			<&gpk3 6 2 3 3>;
+	};
+
+	leds {
+		compatible = "gpio-leds";
+
+		led1 {
+			label	= "led1";
+			gpios	= <&gpc1 0 1 0x10000 0>;
+			linux,default-trigger	= "oneshot";
+			default-state	= "off";
+		};
+
+		led2 {
+			label	= "led2";
+			gpios	= <&gpc1 2 1 0x10000 0>;
+			linux,default-trigger	= "heartbeat";
+		};
+	};
+
+	i2c@...60000 {	/* i2c0 */
+		#address-cells = <1>;
+		#size-cells = <0>;
+		gpios = <&gpd1 0 2 0 0>,
+			<&gpd1 1 2 0 0>;
+		pmic@9 {
+			compatible = "maxim,max77686";
+			reg = <9>;
+		};
+	};
+
+	i2c@...70000 {	/* i2c1 */
+		status = "disabled";
+		gpios = <&gpd1 2 2 0 0>,
+			<&gpd1 3 2 0 0>;
+	};
+
+	i2c@...80000 {	/* i2c2 */
+		status = "disabled";
+		gpios = <&gpa0 6 2 0 0>,
+			<&gpa0 7 2 0 0>;
+	};
+
+	i2c@...90000 {	/* i2c3 */
+		status = "disabled";
+		gpios = <&gpa1 2 2 0 0>,
+			<&gpa1 3 2 0 0>;
+	};
+
+	i2c@...A0000 {	/* i2c4 */
+		status = "disabled";
+	};
+
+	i2c@...B0000 {	/* i2c5 */
+		status = "disabled";
+	};
+
+	i2c@...C0000 {	/* i2c6 */
+		status = "disabled";
+	};
+
+	i2c@...D0000 {	/* i2c7 */
+		status = "disabled";
+	};
+
+	keypad@...A0000 {
+		status = "disabled";
+	};
+
+	spi_0: spi@...20000 {
+		status = "disabled";
+	};
+
+	spi_1: spi@...30000 {
+		status = "disabled";
+	};
+
+	spi_2: spi@...40000 {
+		status = "disabled";
+	};
+};
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists