Revision tags: release/14.0.0 |
|
#
685dc743 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line .c pattern
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0 |
|
#
372cb4d0 |
| 09-May-2022 |
John Baldwin <jhb@FreeBSD.org> |
spigen: Remove unused devclass argument to DRIVER_MODULE.
|
Revision tags: release/12.3.0, release/13.0.0, release/12.2.0 |
|
#
0866e8bc |
| 01-Sep-2020 |
Mateusz Guzik <mjg@FreeBSD.org> |
spibus: clean up empty lines in .c and .h files
|
Revision tags: release/11.4.0 |
|
#
051669e8 |
| 25-Jan-2020 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r356931 through r357118.
|
#
91e31c3c |
| 23-Jan-2020 |
Jeff Roberson <jeff@FreeBSD.org> |
Consistently use busy and vm_page_valid() rather than touching page bits directly. This improves API compliance, asserts, etc.
Reviewed by: kib, markj Differential Revision: https://reviews.freebsd
Consistently use busy and vm_page_valid() rather than touching page bits directly. This improves API compliance, asserts, etc.
Reviewed by: kib, markj Differential Revision: https://reviews.freebsd.org/D23283
show more ...
|
Revision tags: release/12.1.0, release/11.3.0, release/12.0.0 |
|
#
7a4f1915 |
| 11-Jul-2018 |
Ian Lepore <ian@FreeBSD.org> |
Enhancements and fixes for the spigen(4) driver...
- Resources used by spigen_mmap_single() are now tracked using devfs_set_cdevpriv() rather than in the softc.
- Since resources are now tracked
Enhancements and fixes for the spigen(4) driver...
- Resources used by spigen_mmap_single() are now tracked using devfs_set_cdevpriv() rather than in the softc.
- Since resources are now tracked per-open-fd, there is no need to try to impose any exclusive-open logic, so flags related to that are removed.
- Flags used to track open status to prevent detach() when the device is open are replaced with calls to device_busy()/device_unbusy(). That extends the protection up the hierarchy so that the spibus and hardware controller drivers also can't be detached while the device is open/in use.
- Arbitrary limits on the maximum size of a transfer are removed, along with the sysctl variables that allowed the limits to be changed. There is just no reason to limit the size of a spi transfer to the machine's page size. Or to any other arbitrary value, really.
- Most of the locking is removed. It was mostly protecting access to flags and fields in the softc that no longer exist. The locking that remains is just to prevent concurrent calls to device_[un]busy().
- The code was calling malloc() with M_WAITOK while holding a mutex in several places. Since most of the locking is gone, that's fixed.
show more ...
|
Revision tags: release/11.2.0 |
|
#
1fcf4de0 |
| 21-Jun-2018 |
Ian Lepore <ian@FreeBSD.org> |
Incorporate bus and chip select numbers into spigen(4) cdev names. Rather than assigning spigen device names in order of creation, this uses a device name that corresponds to the owning spibus and c
Incorporate bus and chip select numbers into spigen(4) cdev names. Rather than assigning spigen device names in order of creation, this uses a device name that corresponds to the owning spibus and chip-select index.
Example: /dev/spigen0.1 would be a child of spibus0, and use cs = 1
The intent is for systems like Raspberry Pi to have a consistent way of using an SPI interface with a specific cs value from a user application. Otherwise, there is no consistent way of knowing which cs pin will be assigned to a particular spigen device. The alternative is to specify everything in "the right order" in an overlay file, which is less than ideal. Additionally, this duplicates (to some extent) the way Linux handles a similar situation with their 'spidev' device, so it would be somewhat familiar to those who also use Linux.
A new kernel config option, SPIGEN_LEGACY_CDEVNAME, causes the driver to also create /dev/spigenN device name aliases, with N incrementing in the order of device instantiation. This is provided to ease the transition for existing systems using the original naming convention (particularly when these changes are MFC'd to stable branches).
Differential Revision: https://reviews.freebsd.org/D15301
show more ...
|
#
bc7b44ae |
| 08-Apr-2018 |
Ian Lepore <ian@FreeBSD.org> |
Allow hinted attachment on FDT-based systems. Instead of returning ENXIO when the FDT data doesn't enable the device instance, return BUS_PROBE_NOWILDCARD, the same as for non-FDT systems.
|
#
197d784b |
| 08-Apr-2018 |
Ian Lepore <ian@FreeBSD.org> |
Cast the data pointer to the correct type for the data being accessed (as opposed to one that accidentally worked on the one arch I test-compiled for on my first try).
Reported by: np@, O. Hartmann
Cast the data pointer to the correct type for the data being accessed (as opposed to one that accidentally worked on the one arch I test-compiled for on my first try).
Reported by: np@, O. Hartmann <ohartmann@walstatt.org> Pointy hat: ian@
show more ...
|
#
e973ad22 |
| 07-Apr-2018 |
Ian Lepore <ian@FreeBSD.org> |
Don't check for impossible NULL return from malloc(..., M_WAITOK).
|
#
a0e911e0 |
| 07-Apr-2018 |
Ian Lepore <ian@FreeBSD.org> |
Add an ioctl to get/set the SPI transfer mode. Also, make the bus clock frequency ioctl actually set the corresponding ivar instead of just storing the value locally in the softc (and then not using
Add an ioctl to get/set the SPI transfer mode. Also, make the bus clock frequency ioctl actually set the corresponding ivar instead of just storing the value locally in the softc (and then not using it for anything). Also, return the correct error code if the ioctl cmd is not recognized.
show more ...
|
#
3b46d868 |
| 07-Apr-2018 |
Ian Lepore <ian@FreeBSD.org> |
Remove the existing identify() hack to force-add a spigen device on FDT-based systems, and instead add proper FDT probe code. Because this driver is freebsd-specific and just provides generic userla
Remove the existing identify() hack to force-add a spigen device on FDT-based systems, and instead add proper FDT probe code. Because this driver is freebsd-specific and just provides generic userland access to run spibus transactions, there is no bindings document to mandate a compatible string, so just arbitrarily use "freebsd,spigen".
show more ...
|
#
cdfebb9c |
| 04-Apr-2018 |
Ian Lepore <ian@FreeBSD.org> |
Add a missing MODULE_DEPEND().
|
Revision tags: release/10.4.0, release/11.1.0 |
|
#
50868fa6 |
| 09-Mar-2017 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
[spigen] make spigen device ready to be compiled as a module
- Add flag to indicate that device is opened by userland - Replace "always fail" detach method with proper detach implementation
MFC aft
[spigen] make spigen device ready to be compiled as a module
- Add flag to indicate that device is opened by userland - Replace "always fail" detach method with proper detach implementation
MFC after: 1 week
show more ...
|
#
32d74127 |
| 24-Dec-2016 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
[spigen] Fix spigen attaching as a driver for SPI devices nodes in FDT
Return BUS_PROBE_NOWILDCARD in probe method to make sure that spigen attaches only to the device created in identify method.
B
[spigen] Fix spigen attaching as a driver for SPI devices nodes in FDT
Return BUS_PROBE_NOWILDCARD in probe method to make sure that spigen attaches only to the device created in identify method.
Before this change spigen probe method used to return 0 which meant it competed with other drivers to be attached to the devices created for child nodes of SPI bus node in FDT.
Reported by: Daniel Braniss MFC after: 1 week
show more ...
|
#
7a53f9a7 |
| 17-Dec-2016 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r310169 through r310190.
|
#
3c43a826 |
| 16-Dec-2016 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
[spigen] Make "data" part of spigen_transfer optional
Make st_data part of spigen_transfer optional by letting pass zero length and NULL pointer. SPI controller drivers handle this case fine.
MFC a
[spigen] Make "data" part of spigen_transfer optional
Make st_data part of spigen_transfer optional by letting pass zero length and NULL pointer. SPI controller drivers handle this case fine.
MFC after: 1 week
show more ...
|
#
0ed76ec8 |
| 24-Nov-2016 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r308870 through r309105.
|
#
dac458e0 |
| 20-Nov-2016 |
Emmanuel Vadot <manu@FreeBSD.org> |
Enable the use of spigen on FDT platform
MFC after: 2 weeks
|
Revision tags: release/11.0.1, release/11.0.0 |
|
#
d67fe28b |
| 26-May-2016 |
Adrian Chadd <adrian@FreeBSD.org> |
[spigen] add initial spigen driver from green@
This is a simple ioctl and mmap API to issue SPI transactions from userland. It's useful for simple devices (eg spi temperature sensors, etc) for expe
[spigen] add initial spigen driver from green@
This is a simple ioctl and mmap API to issue SPI transactions from userland. It's useful for simple devices (eg spi temperature sensors, etc) for experimentation.
TODO:
* Write some documentation!
Submitted by: green
show more ...
|