mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

Replace verbatim license text with a `SPDX-License-Identifier` The comment header mis-attributes this license to be "X11", but the license text does not include the last line "Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium.". Therefore, this license is actually equivalent to the SPDX "MIT" license (confirmed by text diffing). Cc: Lothar Waßmann <LW@KARO-electronics.de> Acked-By: Lothar Waßmann <LW@KARO-electronics.de> Signed-off-by: Bence Csókás <csokas.bence@prolan.hu> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
59 lines
929 B
Plaintext
59 lines
929 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0-only OR MIT)
|
|
/*
|
|
* Copyright 2017 Lothar Waßmann <LW@KARO-electronics.de>
|
|
*/
|
|
|
|
/ {
|
|
backlight0 {
|
|
pwms = <&pwm1 0 500000 PWM_POLARITY_INVERTED>;
|
|
power-supply = <®_lcd1_pwr>;
|
|
};
|
|
|
|
backlight1 {
|
|
pwms = <&pwm2 0 500000 PWM_POLARITY_INVERTED>;
|
|
power-supply = <®_lcd1_pwr>;
|
|
};
|
|
|
|
lcd-panel {
|
|
compatible = "edt,et057090dhu";
|
|
pixelclk-active = <0>;
|
|
};
|
|
|
|
lvds0-panel {
|
|
compatible = "edt,etml1010g0dka";
|
|
pixelclk-active = <0>;
|
|
};
|
|
|
|
lvds1-panel {
|
|
compatible = "edt,etml1010g0dka";
|
|
pixelclk-active = <0>;
|
|
};
|
|
};
|
|
|
|
&can1 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&can2 {
|
|
xceiver-supply = <®_3v3>;
|
|
};
|
|
|
|
&ds1339 {
|
|
/*
|
|
* The backup voltage of the module internal RTC is not wired
|
|
* by default on the MB7, so disable that RTC chip.
|
|
*/
|
|
status = "disabled";
|
|
};
|
|
|
|
&i2c3 {
|
|
rtc: rtc@6f {
|
|
compatible = "microchip,mcp7940x";
|
|
reg = <0x6f>;
|
|
};
|
|
};
|
|
|
|
®_lcd0_pwr {
|
|
status = "disabled";
|
|
};
|