mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 13:22:23 +00:00
50ae833e47
A quiet release for SPI, not even many driver updates: - Add a dummy loopback driver for use in exercising framework features during development. - Move the test utilities to tools/ and add support for transferring data to and from a file instead of stdin and stdout to spidev_test. - Support for Mediatek MT2701 and Renesas AG5 deices. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJWlNpkAAoJECTWi3JdVIfQ2rkH/j8fhCJVAGIkFs49+jk/+ZBR NsvUEnPae9+e7vx/UBFNFJrM/1cpqy5VhDSbl/UnJLnOwiOOGeOR5H7S6YgDcW8m gwgeCUJU5eqXx1tAuLJrD/qLya8uQQC6XaSlT2Du2Zr15EZ7tUvlRTva9M2nRQCC OBo6f0FY+ptv/aNL7ME1WY5T4uQJC1FqRfvj0Cle1ZC8A1gONPoI7WLPasMckBEX g9q76OUxLZ/I9CASUGbJYMtq/eBca5kq+dPcFLPfNTKKJk98TgRcJHzT+NW9igo2 D5r/pcsv8pt6H0Q2df8nkRzfvM/EPk/5VAYVJAxCogelKnqVaI8wlc6P7Rq5Mz0= =0Z1l -----END PGP SIGNATURE----- Merge tag 'spi-v4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi Pull spi updates from Mark Brown: "A quiet release for SPI, not even many driver updates: - Add a dummy loopback driver for use in exercising framework features during development. - Move the test utilities to tools/ and add support for transferring data to and from a file instead of stdin and stdout to spidev_test. - Support for Mediatek MT2701 and Renesas AG5 deices" * tag 'spi-v4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi: (69 commits) spi: loopback: fix typo in MODULE_PARM_DESC spi: sun4i: Prevent chip-select from being activated twice before a transfer spi: loopback-test: spi_check_rx_ranges can get always done spi: loopback-test: rename method spi_test_fill_tx to spi_test_fill_pattern spi: loopback-test: write rx pattern also when running without tx_buf spi: fsl-espi: expose maximum transfer size limit spi: expose master transfer size limitation. spi: zynq: use to_platform_device() spi: cadence: use to_platform_device() spi: mediatek: Add spi support for mt2701 IC spi: mediatek: merge all identical compat to mtk_common_compat spi: mtk: Add bindings for mediatek MT2701 soc platform spi: mediatek: Prevent overflows in FIFO transfers spi: s3c64xx: Remove unused platform_device_id entries spi: use to_spi_device spi: dw: Use SPI_TMOD_TR rather than magic const 0 to set tmode spi: imx: defer spi initialization, if DMA engine is spi: imx: return error from dma channel request spi: imx: enable loopback only for ECSPI controller family spi: imx: fix loopback mode setup after controller reset ...
152 lines
4.2 KiB
Makefile
152 lines
4.2 KiB
Makefile
# Some of the tools (perf) use same make variables
|
|
# as in kernel build.
|
|
export srctree=
|
|
export objtree=
|
|
|
|
include scripts/Makefile.include
|
|
|
|
help:
|
|
@echo 'Possible targets:'
|
|
@echo ''
|
|
@echo ' acpi - ACPI tools'
|
|
@echo ' cgroup - cgroup tools'
|
|
@echo ' cpupower - a tool for all things x86 CPU power'
|
|
@echo ' firewire - the userspace part of nosy, an IEEE-1394 traffic sniffer'
|
|
@echo ' hv - tools used when in Hyper-V clients'
|
|
@echo ' iio - IIO tools'
|
|
@echo ' lguest - a minimal 32-bit x86 hypervisor'
|
|
@echo ' perf - Linux performance measurement and analysis tool'
|
|
@echo ' selftests - various kernel selftests'
|
|
@echo ' spi - spi tools'
|
|
@echo ' turbostat - Intel CPU idle stats and freq reporting tool'
|
|
@echo ' usb - USB testing tools'
|
|
@echo ' virtio - vhost test module'
|
|
@echo ' net - misc networking tools'
|
|
@echo ' vm - misc vm tools'
|
|
@echo ' x86_energy_perf_policy - Intel energy policy tool'
|
|
@echo ' tmon - thermal monitoring and tuning tool'
|
|
@echo ' freefall - laptop accelerometer program for disk protection'
|
|
@echo ''
|
|
@echo 'You can do:'
|
|
@echo ' $$ make -C tools/ <tool>_install'
|
|
@echo ''
|
|
@echo ' from the kernel command line to build and install one of'
|
|
@echo ' the tools above'
|
|
@echo ''
|
|
@echo ' $$ make tools/all'
|
|
@echo ''
|
|
@echo ' builds all tools.'
|
|
@echo ''
|
|
@echo ' $$ make tools/install'
|
|
@echo ''
|
|
@echo ' installs all tools.'
|
|
@echo ''
|
|
@echo 'Cleaning targets:'
|
|
@echo ''
|
|
@echo ' all of the above with the "_clean" string appended cleans'
|
|
@echo ' the respective build directory.'
|
|
@echo ' clean: a summary clean target to clean _all_ folders'
|
|
|
|
acpi: FORCE
|
|
$(call descend,power/$@)
|
|
|
|
cpupower: FORCE
|
|
$(call descend,power/$@)
|
|
|
|
cgroup firewire hv guest spi usb virtio vm net iio: FORCE
|
|
$(call descend,$@)
|
|
|
|
liblockdep: FORCE
|
|
$(call descend,lib/lockdep)
|
|
|
|
libapi: FORCE
|
|
$(call descend,lib/api)
|
|
|
|
# The perf build does not follow the descend function setup,
|
|
# invoking it via it's own make rule.
|
|
PERF_O = $(if $(O),$(O)/tools/perf,)
|
|
|
|
perf: FORCE
|
|
$(Q)mkdir -p $(PERF_O) .
|
|
$(Q)$(MAKE) --no-print-directory -C perf O=$(PERF_O) subdir=
|
|
|
|
selftests: FORCE
|
|
$(call descend,testing/$@)
|
|
|
|
turbostat x86_energy_perf_policy: FORCE
|
|
$(call descend,power/x86/$@)
|
|
|
|
tmon: FORCE
|
|
$(call descend,thermal/$@)
|
|
|
|
freefall: FORCE
|
|
$(call descend,laptop/$@)
|
|
|
|
all: acpi cgroup cpupower hv firewire lguest \
|
|
perf selftests turbostat usb \
|
|
virtio vm net x86_energy_perf_policy \
|
|
tmon freefall
|
|
|
|
acpi_install:
|
|
$(call descend,power/$(@:_install=),install)
|
|
|
|
cpupower_install:
|
|
$(call descend,power/$(@:_install=),install)
|
|
|
|
cgroup_install firewire_install hv_install lguest_install perf_install usb_install virtio_install vm_install net_install:
|
|
$(call descend,$(@:_install=),install)
|
|
|
|
selftests_install:
|
|
$(call descend,testing/$(@:_install=),install)
|
|
|
|
turbostat_install x86_energy_perf_policy_install:
|
|
$(call descend,power/x86/$(@:_install=),install)
|
|
|
|
tmon_install:
|
|
$(call descend,thermal/$(@:_install=),install)
|
|
|
|
freefall_install:
|
|
$(call descend,laptop/$(@:_install=),install)
|
|
|
|
install: acpi_install cgroup_install cpupower_install hv_install firewire_install lguest_install \
|
|
perf_install selftests_install turbostat_install usb_install \
|
|
virtio_install vm_install net_install x86_energy_perf_policy_install \
|
|
tmon_install freefall_install
|
|
|
|
acpi_clean:
|
|
$(call descend,power/acpi,clean)
|
|
|
|
cpupower_clean:
|
|
$(call descend,power/cpupower,clean)
|
|
|
|
cgroup_clean hv_clean firewire_clean lguest_clean spi_clean usb_clean virtio_clean vm_clean net_clean iio_clean:
|
|
$(call descend,$(@:_clean=),clean)
|
|
|
|
liblockdep_clean:
|
|
$(call descend,lib/lockdep,clean)
|
|
|
|
libapi_clean:
|
|
$(call descend,lib/api,clean)
|
|
|
|
perf_clean:
|
|
$(call descend,$(@:_clean=),clean)
|
|
|
|
selftests_clean:
|
|
$(call descend,testing/$(@:_clean=),clean)
|
|
|
|
turbostat_clean x86_energy_perf_policy_clean:
|
|
$(call descend,power/x86/$(@:_clean=),clean)
|
|
|
|
tmon_clean:
|
|
$(call descend,thermal/tmon,clean)
|
|
|
|
freefall_clean:
|
|
$(call descend,laptop/freefall,clean)
|
|
|
|
clean: acpi_clean cgroup_clean cpupower_clean hv_clean firewire_clean lguest_clean \
|
|
perf_clean selftests_clean turbostat_clean spi_clean usb_clean virtio_clean \
|
|
vm_clean net_clean iio_clean x86_energy_perf_policy_clean tmon_clean \
|
|
freefall_clean
|
|
|
|
.PHONY: FORCE
|