summaryrefslogtreecommitdiff
path: root/sys/dev/flash/mx25l.c
Commit message (Expand)AuthorAgeFilesLines
* flash: Add support for SPI flash s25fl512sNick O'Brien2020-10-021-0/+1
* Ever since the block layer expanded its command syntax beyond justScott Long2020-02-071-1/+1
* Regularize my copyright noticeWarner Losh2019-12-041-1/+1
* flash: Add GigaDevice gd25q128 flashEmmanuel Vadot2019-10-251-0/+1
* Use the new FDTCOMPAT_PNP_INFO() macro to define SPIBUS_FDT_PNP_INFO().Ian Lepore2019-05-231-1/+1
* Give the mx25l device sole ownership of the name /dev/flash/spi* instead ofIan Lepore2019-03-101-2/+1
* Add a module dependency on fdt_slicer.Ian Lepore2019-02-261-0/+1
* Resolve a name conflict when both SpiFlash and DataFlash devices are present.Ian Lepore2019-02-251-1/+2
* Remove All Rights ReservedWarner Losh2019-02-051-1/+1
* The device ID tables are used only within the driver, make them static soIan Lepore2018-07-291-1/+1
* mx25l: compat_data is only defined when FDT isEmmanuel Vadot2018-06-141-0/+2
* mx25l: Add pnp infoEmmanuel Vadot2018-06-141-0/+1
* mx25l: Add mx25l1606eEmmanuel Vadot2018-05-171-0/+1
* Add the device/chip type to the disk d_descr field, and print more infoIan Lepore2018-03-181-2/+9
* Add support for 4K and 32K erase block sizes. Many of the supported chipsIan Lepore2018-03-181-12/+23
* Make all internal routines return an int error status, and check theIan Lepore2018-03-181-41/+47
* Add sc_parent to the softc and use it in place of device_get_parent() callsIan Lepore2018-03-181-46/+33
* Bugfix: wait for writes/erases to complete after starting them, instead ofIan Lepore2018-03-181-1/+2
* Eliminate some unneeded intermediate variables. Eliminate some redundantIan Lepore2018-03-181-45/+36
* Remove a pointless KASSERT and reword a comment a bit. The KASSERT testedIan Lepore2018-03-181-10/+2
* Do not overwrite the contents of BIO_WRITE buffers. SPI inherentlyIan Lepore2018-03-181-1/+2
* Add a functional detach() routine, to make things kldunload-friendly.Ian Lepore2018-02-241-2/+40
* Add missing MODULE_DEPENDS().Ian Lepore2018-02-201-0/+1
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Add Microchip 1-MBit SPI flash IDJustin Hibbits2017-10-301-0/+1
* [mx25l] add new device ids.Adrian Chadd2017-05-061-0/+2
* [mx25l] add new device id.Adrian Chadd2016-07-211-0/+3
* Add support for Atmel at25df641 flashBaptiste Daroussin2016-06-081-0/+3
* [mx25l] add Winbond w25x64 support.Adrian Chadd2016-05-261-0/+1
* Modify mx25l FDT compatible device handlingStanislav Galabov2016-04-201-3/+17
* sys/dev: use our nitems() macro when it is avaliable through param.h.Pedro F. Giffuni2016-04-191-1/+1
* Only compile the FDT bits when we are using FDT.Adrian Chadd2016-04-171-0/+2
* Make mx25l compatible with jedec,spi-nor as wellStanislav Galabov2016-04-151-1/+7
* Enable 4-byte address support for the mx25l family of SPI flash devices.Stanislav Galabov2016-04-041-19/+92
* Add basic FDT support for the mx25l SPI flash.Luiz Otavio O Souza2016-03-301-0/+16
* [flash] Teach mx25l SPI flash driver to interact with fdt_slicer and geom_fla...Adrian Chadd2016-01-221-0/+23
* Add support for s25fl256s. I /think/ it's a 32mb NOR flash part.Adrian Chadd2015-11-051-0/+1
* Fix a few typos for s25fl types.Luiz Otavio O Souza2013-08-281-2/+2
* Add support for two new winbond SPI flash parts.Adrian Chadd2013-06-081-1/+5
* Add more SPI flash IDs.Aleksandr Rybalko2012-09-251-9/+16
* Add a new flash part - 4MB SPI flash from Winbond.Adrian Chadd2012-08-281-0/+1
* Add a couple more SPI flash device IDs found in commercialAdrian Chadd2012-01-041-0/+2
* Modify the spi flash driver to allow smaller read IO sizes, but enforceAdrian Chadd2011-02-161-17/+18
* Add support for the m25p64; lifted straight from Linux.Adrian Chadd2011-01-301-0/+1
* Add s25sl064a, an 8mb SPI flash part.Adrian Chadd2010-08-171-0/+1
* Fix naming to be consistent.Adrian Chadd2010-07-191-2/+2
* Extend the mx25l erase function to support different erase commands.Adrian Chadd2010-07-191-3/+3
* Extend the mx25l flash device support to include a set of per-deviceAdrian Chadd2010-07-191-4/+11
* Fix KASSERT() messages to reflect reality.Adrian Chadd2010-07-161-2/+2
* - Code reorg: extract mx25l_read and mx25l_write methodsOleksandr Tymoshenko2009-11-181-81/+146