aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/ti/clk
Commit message (Collapse)AuthorAgeFilesLines
* ti_clkctrl.c: fix paths in commentMitchell Horne2025-10-201-3/+3
| | | | Now under sys/contrib/device-tree.
* Remove OMAP4 supportOskar Holmlund2025-04-231-6/+0
| | | | | | | | | | Due to lack of boards with OMAP4 on the market and the shortcoming of resources to maintain the code base, it is time to let it go. Previous diff rev see https://reviews.freebsd.org/D42116 Relnotes: Yes Approved by: manu (mentor) Differential revision: https://reviews.freebsd.org/D49661
* Replace calls to bus_generic_attach with bus_attach_childrenJohn Baldwin2024-12-065-13/+26
| | | | | Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D47675
* clk: Move clock code in dev/clkEmmanuel Vadot2024-01-109-9/+9
| | | | | | | | | | | We've removed kernel option EXT_RESOURCES almost two years ago. While it was ok to have some code under a common 'extres' subdirectory at first, we now have a lot of consumer of it and we made it mandatory so no need to have it under a cryptic name. Reviewed by: mhorne Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D43191
* sys: Automated cleanup of cdefs and other formattingWarner Losh2023-11-278-8/+0
| | | | | | | | | | | | | | | | Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row. Remove /^#if.*\n#endif.*\n#include\s+<sys/cdefs.h>.*\n/ Remove /\n+#include\s+<sys/cdefs.h>.*\n+#if.*\n#endif.*\n+/ Remove /\n+#if.*\n#endif.*\n+/ Remove /^#if.*\n#endif.*\n/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/types.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/param.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/capsicum.h>/ Sponsored by: Netflix
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-169-18/+0
| | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
* sys: Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-1611-22/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-1211-11/+11
| | | | | | | | | The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause. Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
* arm ti: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-095-20/+10
|
* arm ti: Remove unused variables.John Baldwin2022-04-091-4/+0
|
* arm: clean up empty lines in .c and .h filesMateusz Guzik2020-09-013-3/+0
| | | | Notes: svn path=/head/; revision=365068
* Move Ti AM335x to dev/extres/clk framework.Michal Meloun2020-07-3011-0/+2402
Re-implement clocks for these SoC by using now standard extres/clk framework. This is necessary for future expansion of these. The new implementation is (due to the size of the patch) only the initial (minimum) version. It will be updated/expanded with a subsequent set of particular patches. This patch is also not tested on OMAP4 based boards (BeagleBone), so all possible issues should be (and will be) fixed by ASAP once identified. Submited by: Oskar Holmlund (oskar.holmlund@ohdata.se) Differential Revision: https://reviews.freebsd.org/D25118 Notes: svn path=/head/; revision=363700