forked from Minki/linux
9465d9cc31
Pull timer updates from Thomas Gleixner: "The time/timekeeping/timer folks deliver with this update: - Fix a reintroduced signed/unsigned issue and cleanup the whole signed/unsigned mess in the timekeeping core so this wont happen accidentaly again. - Add a new trace clock based on boot time - Prevent injection of random sleep times when PM tracing abuses the RTC for storage - Make posix timers configurable for real tiny systems - Add tracepoints for the alarm timer subsystem so timer based suspend wakeups can be instrumented - The usual pile of fixes and updates to core and drivers" * 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (23 commits) timekeeping: Use mul_u64_u32_shr() instead of open coding it timekeeping: Get rid of pointless typecasts timekeeping: Make the conversion call chain consistently unsigned timekeeping_Force_unsigned_clocksource_to_nanoseconds_conversion alarmtimer: Add tracepoints for alarm timers trace: Update documentation for mono, mono_raw and boot clock trace: Add an option for boot clock as trace clock timekeeping: Add a fast and NMI safe boot clock timekeeping/clocksource_cyc2ns: Document intended range limitation timekeeping: Ignore the bogus sleep time if pm_trace is enabled selftests/timers: Fix spelling mistake "Asyncrhonous" -> "Asynchronous" clocksource/drivers/bcm2835_timer: Unmap region obtained by of_iomap clocksource/drivers/arm_arch_timer: Map frame with of_io_request_and_map() arm64: dts: rockchip: Arch counter doesn't tick in system suspend clocksource/drivers/arm_arch_timer: Don't assume clock runs in suspend posix-timers: Make them configurable posix_cpu_timers: Move the add_device_randomness() call to a proper place timer: Move sys_alarm from timer.c to itimer.c ptp_clock: Allow for it to be optional Kconfig: Regenerate *.c_shipped files after previous changes ...
47 lines
1.5 KiB
Plaintext
47 lines
1.5 KiB
Plaintext
config SFC
|
|
tristate "Solarflare SFC9000/SFC9100-family support"
|
|
depends on PCI
|
|
select MDIO
|
|
select CRC32
|
|
select I2C
|
|
select I2C_ALGOBIT
|
|
imply PTP_1588_CLOCK
|
|
---help---
|
|
This driver supports 10/40-gigabit Ethernet cards based on
|
|
the Solarflare SFC9000-family and SFC9100-family controllers.
|
|
|
|
To compile this driver as a module, choose M here. The module
|
|
will be called sfc.
|
|
config SFC_MTD
|
|
bool "Solarflare SFC9000/SFC9100-family MTD support"
|
|
depends on SFC && MTD && !(SFC=y && MTD=m)
|
|
default y
|
|
---help---
|
|
This exposes the on-board flash and/or EEPROM as MTD devices
|
|
(e.g. /dev/mtd1). This is required to update the firmware or
|
|
the boot configuration under Linux.
|
|
config SFC_MCDI_MON
|
|
bool "Solarflare SFC9000/SFC9100-family hwmon support"
|
|
depends on SFC && HWMON && !(SFC=y && HWMON=m)
|
|
default y
|
|
---help---
|
|
This exposes the on-board firmware-managed sensors as a
|
|
hardware monitor device.
|
|
config SFC_SRIOV
|
|
bool "Solarflare SFC9000-family SR-IOV support"
|
|
depends on SFC && PCI_IOV
|
|
default y
|
|
---help---
|
|
This enables support for the SFC9000 I/O Virtualization
|
|
features, allowing accelerated network performance in
|
|
virtualized environments.
|
|
config SFC_MCDI_LOGGING
|
|
bool "Solarflare SFC9000/SFC9100-family MCDI logging support"
|
|
depends on SFC
|
|
default y
|
|
---help---
|
|
This enables support for tracing of MCDI (Management-Controller-to-
|
|
Driver-Interface) commands and responses, allowing debugging of
|
|
driver/firmware interaction. The tracing is actually enabled by
|
|
a sysfs file 'mcdi_logging' under the PCI device.
|