-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AAUTO-1401 Car image type support has been added for imx95-19x19-evk …
…board. Device trees for Car image type and imx95-evk board has been added.
- Loading branch information
Showing
5 changed files
with
112 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT) | ||
/* | ||
* Copyright 2024 NXP | ||
*/ | ||
|
||
/dts-v1/; | ||
/plugin/; | ||
|
||
#include <dt-bindings/clock/fsl,imx95-clock.h> | ||
#include <dt-bindings/gpio/gpio.h> | ||
#include "imx95-pinfunc.h" | ||
|
||
&{/} { | ||
reserved-memory { | ||
m7_framebuffer_reserved: m7@8e000000 { | ||
no-map; | ||
reg = <0 0x8e000000 0 0x2000000>; | ||
}; | ||
}; | ||
}; | ||
|
||
&vehicle_core { | ||
status = "okay"; | ||
}; | ||
|
||
&vehicle_rpmsg_m7 { | ||
status = "okay"; | ||
}; |
65 changes: 65 additions & 0 deletions
65
arch/arm64/boot/dts/freescale/imx95-19x19-evk-rpmsg-car.dts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT) | ||
/* | ||
* Copyright 2024 NXP | ||
*/ | ||
|
||
#include "imx95-19x19-evk.dts" | ||
|
||
/delete-node/ &lpi2c4; | ||
|
||
/ { | ||
aliases { | ||
i2c3 = &i2c_rpbus_1; | ||
}; | ||
|
||
reserved-memory { | ||
m7_reserved: m7@80000000 { | ||
no-map; | ||
reg = <0 0x80000000 0 0x1000000>; | ||
}; | ||
}; | ||
|
||
i2c_rpbus_1: i2c-rpbus-1 { | ||
compatible = "fsl,i2c-rpbus-v2"; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
status = "okay"; | ||
|
||
wm8962: codec@1a { | ||
compatible = "wlf,wm8962"; | ||
reg = <0x1a>; | ||
clocks = <&scmi_clk IMX95_CLK_SAI3>; | ||
DCVDD-supply = <®_audio_pwr>; | ||
DBVDD-supply = <®_audio_pwr>; | ||
AVDD-supply = <®_audio_pwr>; | ||
CPVDD-supply = <®_audio_pwr>; | ||
MICVDD-supply = <®_audio_pwr>; | ||
PLLVDD-supply = <®_audio_pwr>; | ||
SPKVDD1-supply = <®_audio_pwr>; | ||
SPKVDD2-supply = <®_audio_pwr>; | ||
gpio-cfg = < | ||
0x0000 /* 0:Default */ | ||
0x0000 /* 1:Default */ | ||
0x0000 /* 2:FN_DMICCLK */ | ||
0x0000 /* 3:Default */ | ||
0x0000 /* 4:FN_DMICCDAT */ | ||
0x0000 /* 5:Default */ | ||
>; | ||
}; | ||
|
||
i2c4_gpio_expander_21: i2c4-gpio-expander@21 { | ||
compatible = "nxp,pcal6408"; | ||
#gpio-cells = <2>; | ||
gpio-controller; | ||
reg = <0x21>; | ||
interrupt-controller; | ||
#interrupt-cells = <2>; | ||
interrupt-parent = <&gpio2>; | ||
interrupts = <18 IRQ_TYPE_LEVEL_LOW>; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pinctrl_i2c4_pcal6408>; | ||
vcc-supply = <®_3p3v>; | ||
status = "okay"; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters