This is an add-on product that installs on top of the Linux BSP for the NXP i.MX RT EVK board. It must be purchased separately from the Linux BSP product. |
This document provides information on how to use ADC in the uClinux i.MX RT10XX BSPs.
The following are the requirements for this project:
Provide a Linux demo project combining all the requirements in this project.
Rationale: Needed to let Customer integrate results of this project into target embedded application.
Implementation: Section: "Design: Demo project".
Test: Section: "Test Plan: Demo Project".
Develop Linux ADC device driver for the i.MX RT1050 ADC controller.
Rationale: Explicit Customer requirement.
Implementation: Section: "Design: Linux ADC Device Driver".
Test: Section: "Test Plan: Linux ADC Driver".
The following are the non-requirements for this project that may otherwise not be obvious:
None
This project will enable the required ADC functionality in the Linux configuration ("embedded project") called rootfs
, which resides in a projects/rootfs
directory, relative to the top of the Linux i.MX RT10XX installation.
The clock driver for IMXRT10XX SoC will be updated to support the ADC clock gates.
There is the existing vf610_adc
driver in the Linux sources, which provides support for the ADC controller of the Vybrid and some other SoCs from the i.MX family. The i.MXRT10XX SoC has a similar ADC controller, however there are some low-level differences in the hardware interfaces (register offsets, etc). The driver will be updated to support the register set of the IMXRT10XX SoC. Support for the IMXRT10XX ADC will be enabled via the DTS
kernel file, using the new fls,imxrt10xx-adc
compatibility string.
This project makes the following updates in the related products:
None
This project updates the following user documents:
None
The following alternative design approaches were considered by this project but then discarded for some reason:
None
The downloadable materials developed by this project are available from a secure Web page on the Emcraft Systems web site. Specifically, proceed to the following URL to download the software materials:
for the i.MX RT1050 BSP (release 3.0.4):
The page is protected as follows:
Login: CONTACT EMCRAFT
Password: CONTACT EMCRAFT
for the i.MX RT1050 BSP (release 3.1.0):
The page is protected as follows:
Login: CONTACT EMCRAFT
Password: CONTACT EMCRAFT
for the i.MX RT1060 BSP (release 3.1.0):
The page is protected as follows:
Login: CONTACT EMCRAFT
Password: CONTACT EMCRAFT
The following files are available from the secure download area:
linux-adc.patch
- patch to the Linux kernel sources;
projects-adc.patch
- patch to the rootfs
project;
rootfs.uImage
- prebuilt bootable Linux image;
The following hardware setup is required for the i.MX RT 10XX board:
the i.MX RT1050 EVKB or i.MX RT1060 EVKB board.
The following software setup is required:
Download the files listed in Section: "Downloadable Files" to the top of the Linux i.MX RT installation.
Install the BSP, as per the respective "Installing and activating cross development environment" document in the "Software" section on the Emcraft site.
From the top of the Linux installation, activate the Linux cross-compile environment by running:
$ . ACTIVATE.sh |
From the top of the BSP installation, go to the Linux kernel tree and install the kernel patch, eg:
$ cd linux/ $ patch -p1 < ../../linux-adc.patch |
From the top of the Linux installation, go to the projects
sub-directory, and patch the rootfs
project:
$ cd projects/ $ patch -p1 < ../../projects-adc.patch |
Build the rootfs
project:
$ cd projects/rootfs $ make |
Perform the following step-wise test procedure:
Go to the projects/rootfs
directory, build the loadable Linux image (rootfs.uImage
) and copy it to the TFTP directory on the host:
$ cd projects/rootfs $ make |
Boot the loadable Linux image (rootfs.uImage
) to the target via TFTP and validate that it boots to the Linux shell:
=> run netboot Using ethernet@402D8000 device TFTP from server 192.168.1.73; our IP address is 192.168.1.105 Filename 'rootfs.uImage'. Load address: 0x80007fc0 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ... / # uname Linux / # |
Perform the following step-wise test procedure:
Connect 3.3V to channel 9 of ADC1 (for this, one can wire J25.4 to J23.3)
Check that the measurement on channel 9 of ADC1 is near maximum (4096):
cat /sys/bus/iio/devices/iio:device0/in_voltage9_raw 4094 |
Connect GND to channel 9 of ADC1 (for this, one can wire J25.6 to J23.3)
Check that the measurement on channel 9 of ADC1 is near minimum (0):
/ # cat /sys/bus/iio/devices/iio:device0/in_voltage9_raw 2 |
Connect a wire with known voltage applied to channel 9 of ADC1.
Check that the measurement on channel 9 of ADC1 corresponds to the applied voltage measured with a voltage meter:
/ # cat /sys/bus/iio/devices/iio:device0/in_voltage9_raw 3278 / # cat /sys/bus/iio/devices/iio:device0/in_voltage_scale 0.805664062 / # |
(3278 corresponds to 3278 * 0.805664062 = 2.6V )
Repeat the tests with channels 0
of ADC1 (J23.2
), 10
(J23.4
) and 15
(J23.1
)