mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
5bc21d3869
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>
14 lines
272 B
Text
14 lines
272 B
Text
// 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_SAI1_TXD3_GPIO4_IO15 0x19 /* Touch Reset */
|
|
>;
|
|
};
|
|
};
|