aboutsummaryrefslogtreecommitdiff
path: root/sys/powerpc/mikrotik
Commit message (Collapse)AuthorAgeFilesLines
* powerpc: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-1/+1
| | | | Notes: svn path=/head/; revision=365073
* - Allow different slicers for different flash types to be registeredMarius Strobl2017-02-221-38/+0
| | | | | | | | | | | | | | | | | | | | with geom_flashmap(4) and teach it about MMC for slicing enhanced user data area partitions. The FDT slicer still is the default for CFI, NAND and SPI flash on FDT-enabled platforms. - In addition to a device_t, also pass the name of the GEOM provider in question to the slicers as a single device may provide more than provider. - Build a geom_flashmap.ko. - Use MODULE_VERSION() so other modules can depend on geom_flashmap(4). - Remove redundant/superfluous GEOM routines that either do nothing or provide/just call default GEOM (slice) functionality. - Trim/adjust includes Submitted by: jhibbits (RouterBoard bits) Reviewed by: jhibbits Notes: svn path=/head/; revision=314097
* Add a driver for the RouterBoard RB800 User LEDJustin Hibbits2017-02-191-0/+149
| | | | | | | | This may work on other RouterBoard PPC platforms, but I don't have any to test with. Notes: svn path=/head/; revision=313964
* Create a RouterBoard platform and use it to create a flash mapJustin Hibbits2015-08-221-0/+123
Summary: The RouterBoard uses a predefined partition map which doesn't exist in the fdt. This change allows overriding the fdt slicer with a custom slicer, and uses this custom slicer to define the flash map on the RouterBoard RB800. D3305 converts the mpc85xx platform into a base class, so that systems based on the mpc85xx platform can add their own overrides. This change builds on D3305, and creates a RouterBoard (RB800) platform to initialize the slicer override. Reviewed By: nwhitehorn, imp Differential Revision: https://reviews.freebsd.org/D3345 Notes: svn path=/head/; revision=287013