summaryrefslogtreecommitdiff
path: root/sys/dev/ic
AgeCommit message (Collapse)Author
2005-08-01remove device polling leftovers from wpaul driverPeter Valchev
2005-08-01Add alarm control.Marco Peereboom
Fix buglet where ami does not count physical drives correctly. Reported by Stephan Tesch stephan at tesch dot cx
2005-08-01remove whitespaceBrad Smith
2005-07-31Move large receive/decryption buffer allocation from the stack intoChristopher Pascoe
wi_softc. ok millert
2005-07-30remove a useless timeout after tx (decrease nasty delays whileReyk Floeter
scanning) and fix various other minor things in the ath(4) driver.
2005-07-29oops don't leak memory when ami_mgmt fails.Marco Peereboom
2005-07-29Per art's email, don't keep something bigger than > 256 bytes on the stack.Marco Peereboom
2005-07-29Remove cruft.Marco Peereboom
2005-07-29Redo bioctl because initial implementation was too complex.Marco Peereboom
tested and ok dlg@ beck@ get it in @deraadt
2005-07-28New driver for the AMD PCnet-PCI family of Ethernet chips. ThisBrad Smith
driver uses direct DMA to mbufs (like other PCI network drivers, and unlike the old "le at pci" driver), and also supports communication with the MII-connected PHYs on the 10/100 boards. From NetBSD
2005-07-20add a comment explaining why we set the MAC address as we do.Brad Smith
From FreeBSD
2005-07-20fix setting the MAC address in rl_init() so that "ifconfig lladdr" worksBrad Smith
as expected. From form@ via mpech@
2005-07-20Remove some more dead code and stale comments.Marco Peereboom
2005-07-20Remove some old NetBSDism for resource shortages. Add proper handling for thisMarco Peereboom
in OpenBSD.
2005-07-20Delete dead code.Marco Peereboom
2005-07-20Skip processor devices when running PPR as per XXX. Ran into a box where theMarco Peereboom
SAFTE device freaked out when a PPR was attempted.
2005-07-19- the self linked hardware rx descriptor list does not work in hostapReyk Floeter
mode, use the normal behaviour with rx overrun interrupts for now. this prevents the hostap from locking under heavy load (like ping -f) and it works more reliable. - run ath_calibrate in splnet() context (from netbsd)
2005-07-19A potpourri of IBM RGB525 ramdac defines, which will be necessary shortly.Miod Vallat
2005-07-18fix sparc64 console; same diff as miodTheo de Raadt
2005-07-18revert marcos bio changes, mickey not okDavid Gwynne
2005-07-18COM_CONSOLE & DDB fixTheo de Raadt
2005-07-18remove trailing newline in panic(9); ok millert@ and deraadt@Federico G. Schwindt
2005-07-18Rip out all previous bio code because it sucked. Replaced all ioctl code inMarco Peereboom
ami(4) and bio(4). Note that this will break trees where userland and kernel are not in sync. ok dlg@
2005-07-17Allow the console support code not to be compiled in; this will beMiod Vallat
necessary for and only used on sparc, shortly. Reluctantely ok deraadt@
2005-07-14Oops, commit actual structure that we need...Marco Peereboom
2005-07-14Add physical disk structure.Marco Peereboom
2005-07-12Print the card number the chipset string is obtained from.Jonathan Gray
As this is not a 1 to 1 mapping it can be useful to know this number, in particular if you have a broken device and want to upgrade the firmware. Prodded by jolan@, ok deraadt@
2005-07-12Add AMI_MAX_TARGET.Marco Peereboom
2005-07-11Enable IR receive mode only for infrared capable PXA2x0 UARTs. NormalUwe Stuehler
reception is blocked while the IR receiver or transmitter is enabled. Also enable the PXA2x0 UART before clearing the FIFO (suggested by drahn@ some time ago), and disable the UART in compwroff(). ok deraadt@
2005-07-10Add diskarray structure for modern controllers.Marco Peereboom
2005-07-08Remove verbosity during autoconf when running in vmware.Marco Peereboom
2005-07-06smartarray 5* raid controller; does io but needs more work; commented out in ↵Michael Shalayeff
configs for now
2005-07-03Fix data_length values in simulationed MODE SENSE page 4 responses soKenneth R Westerback
that scsi_do_mode_sense() accepts them. The data_length value does not include itself, and the pg_length value in a mode page does not include itself or the page_code fields. We were +1 on the former and -2 on the latter resulting in a data_length value that was too small by one. Eliminates 'mode sense page 5 not simulated' messages. ok marco@
2005-07-03MCR_AFE, found on some chipsTheo de Raadt
2005-07-02oopsBrad Smith
2005-07-02clear IFF_RUNNING & IFF_OACTIVE in rl_stop() before de-allocating resources.Brad Smith
2005-07-02clear IFF_RUNNING & IFF_OACTIVE in ral_stop() before de-allocating resources.Brad Smith
2005-07-02clear IFF_RUNNING & IFF_OACTIVE in foo_stop() before de-allocating resources.Brad Smith
2005-07-02set IFCAP_VLAN_MTU and do not whine if we cannot get mbufsBrad Smith
2005-07-02xscale UART FIFOs are 32 bytes deep; found by deraadt@Uwe Stuehler
2005-06-28NBIO > 0 the bioctl code.Marco Peereboom
Conditional jump to ami_ioctl() if NBIO > 0 is defined. ok deraadt@ mickey@
2005-06-28implement ami_schwartz_poll() per the FIXME leftover from the hackathon.Marco Peereboom
ok mickey@
2005-06-28allow posting BIO ioctls to the daughter devices (sd*) as well; marco@ ↵Michael Shalayeff
testing and ok
2005-06-28do not whine if we cannot get mbufs.Brad Smith
2005-06-26rev 1.29Brad Smith
hme_init(): call mii_mediachg() to make sure the current media is set. From NetBSD
2005-06-25re-add ASIX check lost in rev 1.77Brad Smith
2005-06-23clear IFF_RUNNING & IFF_OACTIVE in dc_stop() before de-allocating resources.Brad Smith
2005-06-23Use proper type for 32 bit entity. s/long/intRobert Nagy
This is needed for bktr(4) to work on sparc64. testing and ok by mickey and Jacob Meuser <jakemsr@jakemsr.com>
2005-06-21remove duplicate function prototypes. ok deraadtKevin Lo
2005-06-20Replace arpcom in the softc with ieee80211com in preparation forJonathan Gray
further net80211 changes. ok mickey@