Summary: This enables some features of the DIU, using a static configuration, specified either via a 'edid' property on the 'display' FDT node, or a 'video-mode' environment variable (bootarg). 'video-mode' was chosen because it matches u-boot's naming, so it can be set with: setenv bootargs video-mode=${video-mode} at the u-boot CLI. Mouse cursor is not supported currently, as a hardware cursor is not supported by framebuffer VT yet. Currently it only supports a 32bpp ARGB (actually BGRA) format, and only a single composite plane, at up to 1280x1024. Differential Revision: https://reviews.freebsd.org/D8022
100 lines
1.6 KiB
Plaintext
100 lines
1.6 KiB
Plaintext
#
|
|
# Custom kernel for Freescale MPC85XX development boards like the CDS etc.
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
cpu BOOKE
|
|
cpu BOOKE_E500
|
|
ident MPC85XX
|
|
|
|
machine powerpc powerpc
|
|
|
|
include "dpaa/config.dpaa"
|
|
makeoptions DEBUG="-Wa,-me500 -g"
|
|
makeoptions WERROR="-Werror -Wno-format -Wno-redundant-decls"
|
|
makeoptions NO_MODULES=yes
|
|
|
|
options FPU_EMU
|
|
|
|
options _KPOSIX_PRIORITY_SCHEDULING
|
|
options ALT_BREAK_TO_DEBUGGER
|
|
options BREAK_TO_DEBUGGER
|
|
options BOOTP
|
|
options BOOTP_NFSROOT
|
|
#options BOOTP_NFSV3
|
|
options CD9660
|
|
options COMPAT_43
|
|
options DDB
|
|
#options DEADLKRES
|
|
options DEVICE_POLLING
|
|
#options DIAGNOSTIC
|
|
options FDT
|
|
#makeoptions FDT_DTS_FILE=mpc8555cds.dts
|
|
options FFS
|
|
options GDB
|
|
options GEOM_PART_GPT
|
|
options INET
|
|
options INET6
|
|
options INVARIANTS
|
|
options INVARIANT_SUPPORT
|
|
options KDB
|
|
options KTRACE
|
|
options MD_ROOT
|
|
options MPC85XX
|
|
options MSDOSFS
|
|
options NFS_ROOT
|
|
options NFSCL
|
|
options NFSLOCKD
|
|
options PROCFS
|
|
options PSEUDOFS
|
|
options SCHED_ULE
|
|
options CAPABILITIES
|
|
options CAPABILITY_MODE
|
|
options SMP
|
|
options SYSVMSG
|
|
options SYSVSEM
|
|
options SYSVSHM
|
|
options WITNESS
|
|
options WITNESS_SKIPSPIN
|
|
|
|
device ata
|
|
device bpf
|
|
device cfi
|
|
device crypto
|
|
device cryptodev
|
|
device da
|
|
device ds1553
|
|
device em
|
|
device alc
|
|
device ether
|
|
device fxp
|
|
device gpio
|
|
device iic
|
|
device iicbus
|
|
#device isa
|
|
device loop
|
|
device md
|
|
device miibus
|
|
device pass
|
|
device pci
|
|
device quicc
|
|
device random
|
|
#device rl
|
|
device scbus
|
|
device scc
|
|
device sec
|
|
device tsec
|
|
device tun
|
|
device uart
|
|
options USB_DEBUG # enable debug msgs
|
|
#device uhci
|
|
device ehci
|
|
device umass
|
|
device usb
|
|
device vlan
|
|
|
|
# P1022 DIU
|
|
device diu
|
|
device videomode
|