History log of /freebsd-current/sys/i386/conf/PAE
Revision Date Author Comments
# 031beb4e 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

sys: Remove $FreeBSD$: one-line sh pattern

Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/


# 6a186782 21-Oct-2018 Warner Losh <imp@FreeBSD.org>

Remove the ncr(4) drive.

This driver has been obsolete since the FreeBSD 4.x. It should have
been removed then since the sym(4) driver had subsumed it. The driver
was commented out of GENERIC in 2000.

RelNotes: Yes


# 2089f538 01-Jan-2015 Scott Long <scottl@FreeBSD.org>

Garbage collect the asr driver. Hardware for it has not been produced in
roughly 10 years, and the driver has not enjoyed any significant maintenance
since long before that. Despite well-meaning efforts from a number of
people, myself included, it never made the jump to 64-bit and was relegated
to the back-corners of i386. Now its frailty is hampering forward progress
with Clang. Any renewed engineering efforts are of course welcome and can
happen outside of the tree. No MFC of this is planned.


# c3d3eeb3 29-Dec-2014 Marius Strobl <marius@FreeBSD.org>

- No longer exclude malo(4) and mwl(4), they have been fixed in r275870
and r275871 respectively to build with PAE enabled.
- For the PAE kernel configuration file, no longer exclude devices that
are known to be 64-bit DMA clean from amd64.

MFC after: 3 days


# e6455de1 28-May-2014 Marius Strobl <marius@FreeBSD.org>

- Actually, modules are built correctly when compiled along the kernel as
they then pick up an opt_global.h from KERNBUILDDIR having PAE defined.
Thus, build all modules by default except those which still really are
defective as of r266799.
- Minor style cleanup.

MFC after: 1 week


# 7f47cbd3 15-Feb-2014 Christian Brueffer <brueffer@FreeBSD.org>

Retire the nve(4) driver; nfe(4) has been the default driver for NVIDIA
nForce MCP adapters for a long time.

Yays: jhb, remko, yongari
Nays: none on the current and stable lists


# 1fdeb165 06-Jul-2013 Xin LI <delphij@FreeBSD.org>

Import HighPoint DC Series Data Center HBA (DC7280 and R750) driver.
This driver works for FreeBSD/i386 and FreeBSD/amd64 platforms.

Many thanks to HighPoint for providing this driver.

MFC after: 1 day


# 8ed98609 12-Apr-2013 Edward Tomasz Napierala <trasz@FreeBSD.org>

Remove ctl(4) from GENERIC. Also remove 'options CTL_DISABLE'
and kern.cam.ctl.disable tunable; those were introduced as a workaround
to make it possible to boot GENERIC on low memory machines.

With ctl(4) being built as a module and automatically loaded by ctladm(8),
this makes CTL work out of the box.

Reviewed by: ken
Sponsored by: FreeBSD Foundation


# 67944c45 25-Aug-2012 Glen Barber <gjb@FreeBSD.org>

Grammar fix: s/NIC's/NICs/

MFC after: 3 days


# 130f4520 11-Jan-2012 Kenneth D. Merry <ken@FreeBSD.org>

Add the CAM Target Layer (CTL).

CTL is a disk and processor device emulation subsystem originally written
for Copan Systems under Linux starting in 2003. It has been shipping in
Copan (now SGI) products since 2005.

It was ported to FreeBSD in 2008, and thanks to an agreement between SGI
(who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is
available under a BSD-style license. The intent behind the agreement was
that Spectra would work to get CTL into the FreeBSD tree.

Some CTL features:

- Disk and processor device emulation.
- Tagged queueing
- SCSI task attribute support (ordered, head of queue, simple tags)
- SCSI implicit command ordering support. (e.g. if a read follows a mode
select, the read will be blocked until the mode select completes.)
- Full task management support (abort, LUN reset, target reset, etc.)
- Support for multiple ports
- Support for multiple simultaneous initiators
- Support for multiple simultaneous backing stores
- Persistent reservation support
- Mode sense/select support
- Error injection support
- High Availability support (1)
- All I/O handled in-kernel, no userland context switch overhead.

(1) HA Support is just an API stub, and needs much more to be fully
functional.

ctl.c: The core of CTL. Command handlers and processing,
character driver, and HA support are here.

ctl.h: Basic function declarations and data structures.

ctl_backend.c,
ctl_backend.h: The basic CTL backend API.

ctl_backend_block.c,
ctl_backend_block.h: The block and file backend. This allows for using
a disk or a file as the backing store for a LUN.
Multiple threads are started to do I/O to the
backing device, primarily because the VFS API
requires that to get any concurrency.

ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a
small amount of memory to act as a source and sink
for reads and writes from an initiator. Therefore
it cannot be used for any real data, but it can be
used to test for throughput. It can also be used
to test initiators' support for extremely large LUNs.

ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes,
and command handler functions defined for supported
opcodes.

ctl_debug.h: Debugging support.

ctl_error.c,
ctl_error.h: CTL-specific wrappers around the CAM sense building
functions.

ctl_frontend.c,
ctl_frontend.h: These files define the basic CTL frontend port API.

ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM.
This frontend allows for using CTL without any
target-capable hardware. So any LUNs you create in
CTL are visible in CAM via this port.

ctl_frontend_internal.c,
ctl_frontend_internal.h:
This is a frontend port written for Copan to do
some system-specific tasks that required sending
commands into CTL from inside the kernel. This
isn't entirely relevant to FreeBSD in general,
but can perhaps be repurposed.

ctl_ha.h: This is a stubbed-out High Availability API. Much
more is needed for full HA support. See the
comments in the header and the description of what
is needed in the README.ctl.txt file for more
details.

ctl_io.h: This defines most of the core CTL I/O structures.
union ctl_io is conceptually very similar to CAM's
union ccb.

ctl_ioctl.h: This defines all ioctls available through the CTL
character device, and the data structures needed
for those ioctls.

ctl_mem_pool.c,
ctl_mem_pool.h: Generic memory pool implementation used by the
internal frontend.

ctl_private.h: Private data structres (e.g. CTL softc) and
function prototypes. This also includes the SCSI
vendor and product names used by CTL.

ctl_scsi_all.c,
ctl_scsi_all.h: CTL wrappers around CAM sense printing functions.

ctl_ser_table.c: Command serialization table. This defines what
happens when one type of command is followed by
another type of command.

ctl_util.c,
ctl_util.h: CTL utility functions, primarily designed to be
used from userland. See ctladm for the primary
consumer of these functions. These include CDB
building functions.

scsi_ctl.c: CAM target peripheral driver and CTL frontend port.
This is the path into CTL for commands from
target-capable hardware/SIMs.

README.ctl.txt: CTL code features, roadmap, to-do list.

usr.sbin/Makefile: Add ctladm.

ctladm/Makefile,
ctladm/ctladm.8,
ctladm/ctladm.c,
ctladm/ctladm.h,
ctladm/util.c: ctladm(8) is the CTL management utility.
It fills a role similar to camcontrol(8).
It allow configuring LUNs, issuing commands,
injecting errors and various other control
functions.

usr.bin/Makefile: Add ctlstat.

ctlstat/Makefile
ctlstat/ctlstat.8,
ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8).
It reports I/O statistics for CTL.

sys/conf/files: Add CTL files.

sys/conf/NOTES: Add device ctl.

sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB
length field is now 2 bytes long.

Add several mode page definitions for CTL.

sys/cam/scsi_all.c: Handle the new 2 byte inquiry length.

sys/dev/ciss/ciss.c,
sys/dev/ata/atapi-cam.c,
sys/cam/scsi/scsi_targ_bh.c,
scsi_target/scsi_cmds.c,
mlxcontrol/interface.c: Update for 2 byte inquiry length field.

scsi_da.h: Add versions of the format and rigid disk pages
that are in a more reasonable format for CTL.

amd64/conf/GENERIC,
i386/conf/GENERIC,
ia64/conf/GENERIC,
sparc64/conf/GENERIC: Add device ctl.

i386/conf/PAE: The CTL frontend SIM at least does not compile
cleanly on PAE.

Sponsored by: Copan Systems, SGI and Spectra Logic
MFC after: 1 month


# e6b42236 26-Nov-2011 Marius Strobl <marius@FreeBSD.org>

Remove some more occurrences of amd(4) missed in r227982.


# 13c98eb7 02-May-2011 Bernhard Schmidt <bschmidt@FreeBSD.org>

All PCI based wireless drivers seem to be explicitly removed from the
PAE kernel config, do that also for those added to GENERIC lately.


# dba9c859 31-Mar-2011 Adrian Chadd <adrian@FreeBSD.org>

Break out the ath PCI logic into a separate device/module.

Introduce the AHB glue for Atheros embedded systems. Right now it's
hard-coded for the AR9130 chip whose support isn't yet in this HAL;
it'll be added in a subsequent commit.

Kernel configuration files now need both 'ath' and 'ath_pci' devices; both
modules need to be loaded for the ath device to work.


# a7d5f7eb 19-Oct-2010 Jamie Gritton <jamie@FreeBSD.org>

A new jail(8) with a configuration file, to replace the work currently done
by /etc/rc.d/jail.


# cb7667d0 08-Jan-2010 Alan Cox <alc@FreeBSD.org>

Catch up with r183101 that added "device acpi" to GENERIC.


# b3b17597 09-May-2009 Jun Kuriyama <kuriyama@FreeBSD.org>

- Use "device\t" and "options \t" for consistency.


# 33644623 01-Dec-2008 Sam Leffler <sam@FreeBSD.org>

Switch to ath hal source code. Note this removes the ath_hal
module; the ath module now brings in the hal support. Kernel
config files are almost backwards compatible; supplying

device ath_hal

gives you the same chip support that the binary hal did but you
must also include

options AH_SUPPORT_AR5416

to enable the extended format descriptors used by 11n parts.
It is now possible to control the chip support included in a
build by specifying exactly which chips are to be supported
in the config file; consult ath_hal(4) for information.


# d7f03759 19-Oct-2008 Ulf Lilleengen <lulf@FreeBSD.org>

- Import the HEAD csup code which is the basis for the cvsmode work.


# f4463607 20-Apr-2008 Sam Leffler <sam@FreeBSD.org>

move awi to the Attic; it will not make the jump to the new world order

Reviewed by: imp


# b063a422 14-Dec-2007 Scott Long <scottl@FreeBSD.org>

Add the 'hptrr' driver for supporting the following Highpoint RocketRAID
cards:

o RocketRAID 172x series
o RocketRAID 174x series
o RocketRAID 2210
o RocketRAID 222x series
o RocketRAID 2240
o RocketRAID 230x series
o RocketRAID 231x series
o RocketRAID 232x series
o RocketRAID 2340
o RocketRAID 2522

Many thanks to Highpoint for their continued support of FreeBSD.

Submitted by: Highpoint


# a3393da7 03-Nov-2007 Sam Leffler <sam@FreeBSD.org>

fix build: when usb was enabled wireless drivers were brought in so
remove the nodevice lines that elided wlan support


# c596337f 03-Nov-2007 Andrew Thompson <thompsa@FreeBSD.org>

Remove zyd as wireless is not supported on PAE.


# 7e68ed12 23-Oct-2007 John Baldwin <jhb@FreeBSD.org>

Stop disabling USB in the PAE kernel config. The USB code has been
using bus_dma(9) for quite a while now and has been used on 64-bit archs
as well.

MFC after: 1 month


# 7302aa80 11-Jun-2007 Andrew Thompson <thompsa@FreeBSD.org>

Exclude wlan_scan_* from PAE like the rest of wlan.


# dd5ee92c 06-May-2007 Kevin Lo <kevlo@FreeBSD.org>

Add rum(4)


# 1b530437 09-Jul-2006 Matt Jacob <mjacob@FreeBSD.org>

If PAE is built w/o modules, make sure that isp(4)
has its firmware resident as well.


# 055abe9a 14-May-2006 Marius Strobl <marius@FreeBSD.org>

Remove some remnants of lnc(4).


# 145ebf44 09-May-2006 Sam Leffler <sam@FreeBSD.org>

make tinderbox happy: GENERIC got ath and wlan added so we need to
now mark these "nodevice" or we'll get undefined references


# a7f12baa 02-Mar-2006 Scott Long <scottl@FreeBSD.org>

iir works on PAE now.


# f6f8bc7a 08-Nov-2005 Scott Long <scottl@FreeBSD.org>

The hptmv inherently believes that a 'long' can hold a physical address.
This hasn't been true on i386 for at least a decade, probably longer, but
I'm too lazy to look up the exact year that PAE support was introduced.
Thus, this driver doesn't work on PAE.

X-MFC After: now


# 59f3cbd7 03-Sep-2005 David E. O'Brien <obrien@FreeBSD.org>

de(4) is now properly busdma'ed.

Reviewed by: jhb


# 0a78d39a 28-Jul-2005 R. Imura <imura@FreeBSD.org>

Don't compile ral and ural in the PAE kernel, because
they have dependency on wlan and usb.

Reported by: make universe


# 97c1144e 29-Apr-2005 David E. O'Brien <obrien@FreeBSD.org>

Enable dc(4) and rl(4) in the PAE kernel.
Both have been busdma'ed for use and tested in the Sparc64 kenrel.


# a8e6f0b6 28-Apr-2005 Scott Long <scottl@FreeBSD.org>

For whatever reason, we don't allow USB on PAE. Since it's a dependency
for EHCI, exclude that driver also.


# 6bcf0032 22-Mar-2005 Maxim Sobolev <sobomax@FreeBSD.org>

Add USB Communication Device Class Ethernet driver. Originally written for
FreeBSD based on aue(4) it was picked by OpenBSD, then from OpenBSD ported
to NetBSD and finally NetBSD version merged with original one goes into
FreeBSD.

Obtained from: http://www.gank.org/freebsd/cdce/
NetBSD
OpenBSD


# a07cb0d8 13-Mar-2005 Scott Long <scottl@FreeBSD.org>

The NVE driver doesn't cleanly compile on PAE.


# 176a8c17 03-Feb-2005 Scott Long <scottl@FreeBSD.org>

Remove the entries for isp and ispfw instead of leaving them in an inconsistent
state.


# d512059d 05-Dec-2004 David E. O'Brien <obrien@FreeBSD.org>

Enable amr(4) - scottl fixed when used with >4GB RAM.


# 1db03259 22-Sep-2004 Matt Jacob <mjacob@FreeBSD.org>

PAE seems to work for isp- at least under mimimal testing.


# 9c4b841b 10-May-2004 David E. O'Brien <obrien@FreeBSD.org>

We don't support USB devices in PAE mode, so catch up with GENERIC rev 1.402.


# d1f5dae9 03-Nov-2003 John Baldwin <jhb@FreeBSD.org>

Remove references to SMP and APIC_IO since GENERIC (which this file
includes) already has those enabled by default.


# f487e0e2 12-Aug-2003 Paul Saab <ps@FreeBSD.org>

Fix the busdma support in twe to support EINPROGRESS and enable it for
use with PAE kernels.


# 132ba32a 12-Jun-2003 Matt Jacob <mjacob@FreeBSD.org>

Remove mpt from the nodevice list. This was tested by the submitter.

Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>


# 3284b9ee 21-May-2003 Paul Saab <ps@FreeBSD.org>

Make ciss usable under PAE

Approved by: re (scottl)


# 487a8c7e 21-May-2003 Paul Saab <ps@FreeBSD.org>

- Make this work with PAE.
- atomically load and clear the status block so we dont miss an
update.
Submitted by: jdp

Approved by: re (scottl)


# 00ffb51e 25-Apr-2003 Johan Karlsson <johan@FreeBSD.org>

Add nodevice axe, since usb isn't supported by PAE.

Submitted by: harti@
Approved by: jake@


# 87b91b10 09-Apr-2003 Jake Burkholder <jake@FreeBSD.org>

Add ahd.


# a3b3689f 07-Apr-2003 Jake Burkholder <jake@FreeBSD.org>

Add a PAE kernel config. This includes GENERIC through the config include
mechanism, and then excludes device drivers which have not been tested or
are known to not work with more than 4G of ram.

Sponsored by: DARPA, Network Associates Laboratories