aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/conf/GENERIC-MMCCAM
Commit message (Collapse)AuthorAgeFilesLines
* x86 & arm: remove CAM_DEBUG_FLAGS= from MMCCAM kernelsMina Galić2024-02-021-5/+1
| | | | | | | | we leave `options CAMDEBUG` enabled, so that when needed, CAM debugging can be enabled *as needed*, rather than setting a default of everything. Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/798
* arm: fix typo in GENERIC-MMCCAMMina Galić2024-02-021-1/+1
| | | | | Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/798
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* arm kernel config: clean up whitespaceMike Karels2023-02-241-1/+1
| | | | | | Most options in kernel config files use "options<space><tab>OPTION". This allows the option to be commented out without shifting columns. A few options had two tabs, and some had spaces. Make them consistent.
* Exclude MMCCAM kernels from make universeMateusz Guzik2023-02-161-0/+2
| | | | | | | | | | | | They don't provide any value and are quite arbitrary. Note arm64 GENERIC-MMCCAM was already excluded, just not the NODEBUG variant. The option is already build-tested with arm64 LINT kernel. Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D38458
* Revert r339421 due to unintended files included to commit.Ruslan Bukin2018-10-181-3/+0
| | | | | | | | | Reported by: ian Approved by: re (gjb) Sponsored by: DARPA, AFRL Notes: svn path=/head/; revision=339422
* Support RISC-V implementations that do not manage the A and D bitsRuslan Bukin2018-10-181-0/+3
| | | | | | | | | | | | | | | | | | | (e.g. RocketChip, lowRISC and derivatives). RISC-V page table entries support A (accessed) and D (dirty) bits. The spec makes hardware support for these bits optional. Implementations that do not manage these bits in hardware raise page faults for accesses to a valid page without A set and writes to a writable page without D set. Check for these types of faults when handling a page fault and fixup the PTE without calling vm_fault if they occur. Reviewed by: jhb, markj Approved by: re (gjb) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D17424 Notes: svn path=/head/; revision=339421
* arm: Add GENERIC-MMCCAM kernel configEmmanuel Vadot2018-03-081-0/+22
MMCCAM is the new mmc stack currently developped by kibab@, add a kernel configuration file that include GENERIC so it's easier to test for people. Notes: svn path=/head/; revision=330674