aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/iwm
Commit message (Collapse)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* iwm: Add device configuration definitions for 9000-series chips.Mark Johnston2019-11-071-1/+2
| | | | | | | | | | | | | Match such chips using the device ID. We should really be checking the subdevice as well, since a smaller number of 9460 and 9560 devices actually belong to a new series of devices and require different firmware, but that will require some extra logic in iwm_attach(). Submitted by: lwhsu, Guo Wen Jun <blockk2000@gmail.com> MFC after: 2 weeks Notes: svn path=/head/; revision=354504
* [iwm] Move Smart Fifo handling into if_iwm_sf.c, sync with Linux iwlwifi.Adrian Chadd2017-06-041-1/+1
| | | | | | | | | | | | * This change also fixes a possible issue in the existing smart-fifo code, which set the IWM_SF_CFG_DUMMY_NOTIF_OFF bit on AC8260 chipsets, although that's only used in iwlwifi for Family 8000 chipsets connected via SDIO interface. Obtained from: Dragonflybsd.git cb650b01526b0aeef3c4307d926e7f1428997d50 Notes: svn path=/head/; revision=319577
* [iwm] Factor out firmware station handling into if_iwm_sta.c.Adrian Chadd2017-05-121-2/+2
| | | | | | | | | | | | | * This adds iwm_mvm_rm_sta(), which will be used to tear down firmware state for better/cleaner iwm_newstate() handling. * Makes iwm_enable_txq() and iwm_mvm_flush_tx_path() non-static, add the declarations to if_iwm_util.h for now. Obtained from: dragonflybsd.git 85d1c6190c4c3564b1a347f253e823aa95c202b2 Notes: svn path=/head/; revision=318222
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* [iwm] Add support for Firmware paging, needed for newer 8000C firmware.Adrian Chadd2017-02-241-1/+1
| | | | | | | | | | * Uses the IWM_FW_PAGING_BLOCK_CMD firmware command to tell the firmware what memory ranges to use for paging. Obtained from: dragonflybsd.git 8a5b199964f8e7bdb00039f0b48817a01b402f18 Notes: svn path=/head/; revision=314192
* Unbreak if_iwm.ko after r314076Enji Cooper2017-02-231-0/+1
| | | | | | | | | | | | | | Add if_iwm_7000.c/if_iwm_8000.c to SRCS to match similar additions made to sys/conf/files after refactoring done in the commit noted. PR: 217308 Pointyhat to: adrian Submitted by: Andreas Nilsson <andrnils@gmail.com> Reported by: Jakob Alvermark <jakob@alvermark.net>, Juan Ramómon Molina Menor <listjm@club.fr> Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314151
* [iwm] Add implementation of the notification wait api from iwlwifi.Adrian Chadd2017-02-061-1/+1
| | | | | | | | Obtained from: Linux iwlwifi Obtained from: DragonflyBSD commit 94dc1dadceb57b688036211262d678bc6bbdde37 Notes: svn path=/head/; revision=313322
* [iwm] add if_iwm_led.c into the build.Adrian Chadd2016-06-021-1/+1
| | | | Notes: svn path=/head/; revision=301188
* Build the iwm and iwmfw modules by default on x86.Rui Paulo2015-08-081-2/+1
| | | | Notes: svn path=/head/; revision=286476
* Import OpenBSD's iwm WiFi driver for Intel 3160/7260/7265.Rui Paulo2015-08-081-0/+17
There are still several bugs, but I've been using it for a while now. Thanks to all the testers and to Adrian for his help with this driver. This driver isn't connected to the build yet, but it will be soon. There's no MFC planned because the driver isn't very stable yet. Reviewed by: adrian Obtained from: https://github.com/rpaulo/iwm Tested by: adrian, gjb, dumbbell (others that I forgot). Relnotes: yes Notes: svn path=/head/; revision=286441