Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial TS-7250-V3 support #4

Merged
merged 15 commits into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
b745447
drivers: bus: ts-pc104: Initial commit of Technologic Systems PC/104 …
markfeathers Mar 2, 2023
c7c8f75
irqchip: irq-ts71xxweim: Initial commit of FPGA IRQ expander for embe…
markfeathers Mar 2, 2023
efcb3bf
gpio: ts71xxweim: Initial commit of WEIM 16-bit GPIO driver for embed…
markfeathers Mar 2, 2023
c85746b
pc104: ts16550: Added ts16550 driver with new UART type to use the em…
markfeathers Mar 2, 2023
057afc5
spi: oc: Initial commit of SPI OpenCores driver
markfeathers Mar 2, 2023
edb2b2d
iio: adc: ts_simple_adc: Initial commit of simple FPGA ADC controller
markfeathers Mar 2, 2023
554b06f
pwm: pwm-ts: Initial commit of PWM driver for TS-7250-V3
markfeathers Mar 2, 2023
c3470e7
mfd: tssupervisor-core: Initial commit of embeddedTS supervisory micr…
markfeathers Mar 8, 2023
74dd8ce
rtc: tssupervisor-rtc: Initial commit of embeddedTS counter based RTC
markfeathers Mar 8, 2023
04dd40e
iio: tssupervisor-adc: Initial commit of embeddedTS supervisory micro…
markfeathers Mar 8, 2023
aedbb9b
iio: tssupervisor-temp: Initial commit of embeddedTS supervisory temp…
markfeathers Mar 8, 2023
ba4fa67
reset: tssupervisor-reset: Initial commit of embeddedTS supervisory r…
markfeathers Mar 8, 2023
e8fc94a
ARM: dts: imx6ul: Initial commit of TS-7250-V3 device tree
markfeathers Mar 8, 2023
eb5a11f
arm: configs: Initial commit of defconfig for embeddedTS i.MX6ul systems
markfeathers Mar 8, 2023
5de6aea
arm: configs: Initial commit of minimal defconfig for embeddedTS i.MX…
markfeathers Mar 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions arch/arm/boot/dts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,8 @@ dtb-$(CONFIG_SOC_IMX6UL) += \
imx6ul-ts4100-7.dtb \
imx6ul-ts4100-8.dtb \
imx6ul-ts4100-16.dtb \
imx6ul-ts7250v3-reva.dtb \
imx6ul-ts7250v3.dtb \
imx6ul-ts7553v2.dtb \
imx6ul-tx6ul-0010.dtb \
imx6ul-tx6ul-0011.dtb \
Expand Down
26 changes: 26 additions & 0 deletions arch/arm/boot/dts/imx6ul-ts7250v3-reva.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// SPDX-License-Identifier: (GPL-2.0+ OR X11)
/*
* Copyright 2019-2022 Technologic Systems, Inc. dba embeddedTS
*/

/dts-v1/;
#include <dt-bindings/input/input.h>
#include <dt-bindings/leds/common.h>
#include "imx6ul-ts7250v3.dtsi"

/ {
model = "embeddedTS i.MX6UL TS-7250-V3 (REV A)";
};

&wdt {
status = "okay";
};

&m41t00s {
status = "okay";
};

&pc104bus {
reset-gpio = <&gpio3 7 GPIO_ACTIVE_HIGH>;
};

17 changes: 17 additions & 0 deletions arch/arm/boot/dts/imx6ul-ts7250v3.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: (GPL-2.0+ OR X11)
/*
* Copyright 2019-2022 Technologic Systems, Inc. dba embeddedTS
*/

/dts-v1/;
#include <dt-bindings/input/input.h>
#include <dt-bindings/leds/common.h>
#include "imx6ul-ts7250v3.dtsi"

&supervisor {
status = "okay";
};

&supervisor_rtc {
status = "okay";
};
Loading