mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-06 21:14:18 +00:00

Declare the temperature sensor on I2C bus 2. Its label is the schematics identifier. Acked-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Andi Shyti <andi.shyti@kernel.org> Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com> Acked-by: Gregory CLEMENT <gregory.clement@bootlin.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
32 lines
539 B
Plaintext
32 lines
539 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
/*
|
|
* Copyright 2023 Mobileye Vision Technologies Ltd.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "eyeq5.dtsi"
|
|
|
|
/ {
|
|
compatible = "mobileye,eyeq5-epm5", "mobileye,eyeq5";
|
|
model = "Mobile EyeQ5 MP5 Evaluation board";
|
|
|
|
chosen {
|
|
stdout-path = "serial2:115200n8";
|
|
};
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x40000000 0x0 0x02000000>,
|
|
<0x8 0x02000000 0x0 0x7E000000>;
|
|
};
|
|
};
|
|
|
|
&i2c2 {
|
|
temperature-sensor@48 {
|
|
compatible = "ti,tmp112";
|
|
reg = <0x48>;
|
|
label = "U60";
|
|
};
|
|
};
|