arch/arm/boot/dts/nxp/imx/imx6sl-kobo-aura2.dts

Source file repositories/reference/linux-study-clean/arch/arm/boot/dts/nxp/imx/imx6sl-kobo-aura2.dts

File Facts

System
Linux kernel
Corpus path
arch/arm/boot/dts/nxp/imx/imx6sl-kobo-aura2.dts
Extension
.dts
Size
11845 bytes
Lines
556
Domain
Architecture Layer
Bucket
arch/arm
Inferred role
Architecture Layer: configuration, schema, or hardware description
Status
atlas-only

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0
/*
 * Device tree for the Kobo Aura 2 ebook reader
 *
 * Name on mainboard is: 37NB-E60QL0+4B1
 * Serials start with: E60QL2
 *
 * Copyright 2022 Andreas Kemnade
 */

/dts-v1/;

#include <dt-bindings/input/input.h>
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/leds/common.h>
#include "imx6sl.dtsi"

/ {
	model = "Kobo Aura 2";
	compatible = "kobo,aura2", "fsl,imx6sl";

	aliases {
		mmc0 = &usdhc2;
		mmc1 = &usdhc3;
	};

	chosen {
		stdout-path = &uart1;
	};

	gpio_keys: gpio-keys {
		compatible = "gpio-keys";
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_gpio_keys>;

		key-cover {
			label = "Cover";
			gpios = <&gpio5 12 GPIO_ACTIVE_LOW>;
			linux,code = <SW_LID>;
			linux,input-type = <EV_SW>;
			wakeup-source;
		};

		key-power {
			label = "Power";
			gpios = <&gpio5 8 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_POWER>;
			wakeup-source;
		};
	};

	leds: leds {
		compatible = "gpio-leds";
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_led>;

		led-0 {
			label = "koboaura2:white:on";
			gpios = <&gpio5 7 GPIO_ACTIVE_LOW>;
			color = <LED_COLOR_ID_WHITE>;
			linux,default-trigger = "timer";
		};
	};

	memory@80000000 {
		device_type = "memory";
		reg = <0x80000000 0x10000000>;
	};

	reg_wifi: regulator-wifi {

Annotation

Implementation Notes