mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-12 04:56:02 +01:00
Enable the I2C bus and set a env variable for the reset GPIO of the touch controller. This allows us to probe the panel in a script. Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de> Reviewed-by: Fabio Estevam <festevam@denx.de>
15 lines
272 B
Plaintext
15 lines
272 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
/*
|
|
* Copyright (C) 2022 Kontron Electronics GmbH
|
|
*/
|
|
|
|
#include "imx8mm-kontron-bl-common-u-boot.dtsi"
|
|
|
|
&iomuxc {
|
|
pinctrl_touch: touchgrp {
|
|
fsl,pins = <
|
|
MX8MM_IOMUXC_SAI5_RXD2_GPIO3_IO23 0x19 /* Touch Reset */
|
|
>;
|
|
};
|
|
};
|