aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/imx
Commit message (Collapse)AuthorAgeFilesLines
* Remove residual blank line at start of MakefileWarner Losh2024-07-155-5/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-166-6/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Convert the imx6_snvs RTC driver to access registers via the syscon device.Ian Lepore2020-11-251-0/+1
| | | | | | | This is required for it to work correctly in the GENERIC kernel. Notes: svn path=/head/; revision=368029
* Make the imx6_snvs driver usable as a module, add pnp info. Add a manpage.Ian Lepore2018-07-082-0/+16
| | | | Notes: svn path=/head/; revision=336096
* Add pnp info to imx6_ahci, and add a module makefile, and a manpage for it.Ian Lepore2018-07-082-0/+15
| | | | Notes: svn path=/head/; revision=336079
* Add pnp info and a module makefile for the imx_wdog watchdog driver.Ian Lepore2018-07-072-0/+15
| | | | Notes: svn path=/head/; revision=336070
* Add required interface header.Ian Lepore2018-03-161-0/+1
| | | | | | | Reported by: andreast@ Notes: svn path=/head/; revision=331045
* Add a SPI driver for imx5 and imx6.Ian Lepore2018-02-262-0/+17
| | | | | | | | It can be compiled into the kernel with "device imx_spi" or loaded as a module, which is also named "imx_spi". Notes: svn path=/head/; revision=329999
* Add a missing line continuation.Ian Lepore2018-02-221-1/+1
| | | | | | | | | | How many commits does it take to get a simple module makefile working? Apparently at least three. Pointy hat to: ian Notes: svn path=/head/; revision=329841
* Add required header files.Ian Lepore2018-02-211-0/+2
| | | | | | | Reported by: andreast@ Notes: svn path=/head/; revision=329730
* Build modules specific to imx5/imx6 only when building those kernels.Ian Lepore2018-02-182-0/+23
This adds sys/modules/imx with a SUBDIR makefile to make the whole collection of modules that are specific to these SoCs. Initially, that "whole collection" consists of the if_ffec and imx_i2c drivers. The if_ffec driver is referenced in its existing home in ../ffec rather than moving it into the imx directory, because it's used by powerpc too, but it is no longer built for all armv6/7 systems. The imx_i2c driver is newly added as a module. Notes: svn path=/head/; revision=329507