arch/arm/boot/dts/nxp/imx/imx6sl-tolino-shine2hd.dts

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

File Facts

System
Linux kernel
Corpus path
arch/arm/boot/dts/nxp/imx/imx6sl-tolino-shine2hd.dts
Extension
.dts
Size
15914 bytes
Lines
690
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 Tolino Shine 2 HD ebook reader
 *
 * Name on mainboard is: 37NB-E60QF0+4A2 or 37NB-E60QF0+4A3
 * Serials start with: E60QF2
 *
 * Copyright 2020 Andreas Kemnade
 */

/dts-v1/;

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

/ {
	model = "Tolino Shine 2 HD";
	compatible = "kobo,tolino-shine2hd", "fsl,imx6sl";

	backlight {
		compatible = "pwm-backlight";
		pwms = <&ec 0 50000>;
		power-supply = <&backlight_regulator>;
	};

	backlight_regulator: regulator-backlight {
		compatible = "regulator-fixed";
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_backlight_power>;
		regulator-name = "backlight";
		gpio = <&gpio2 10 GPIO_ACTIVE_HIGH>;
		enable-active-high;
	};

	chosen {
		stdout-path = &uart1;
	};

	epd_pmic_supply: regulator-epd-pmic-in {
		compatible = "regulator-fixed";
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_epd_pmic_supply>;
		regulator-name = "epd_pmic_supply";
		gpio = <&gpio2 14 GPIO_ACTIVE_HIGH>;
		enable-active-high;
		startup-delay-us = <20000>;
	};

	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-fl {
			label = "Frontlight";
			gpios = <&gpio3 26 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_BRIGHTNESS_CYCLE>;
		};

		key-home {
			label = "Home";

Annotation

Implementation Notes