mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-04 21:51:56 +00:00
20ea6adbf1
Build system: x86_64 Build-tested: bcm2708, bcm2709, bcm2710, bcm2711 Run-tested: bcm2708/RPiB+, bcm2709/RPi3B, bcm2710/RPi3B, bcm2711/RPi4B Signed-off-by: Marty Jones <mj8263788@gmail.com> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
74 lines
2.0 KiB
Makefile
74 lines
2.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2019 OpenWrt.org
|
|
|
|
define KernelPackage/pwm-bcm2835
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=BCM2835 PWM driver
|
|
KCONFIG:= \
|
|
CONFIG_PWM=y \
|
|
CONFIG_PWM_BCM2835
|
|
FILES:=$(LINUX_DIR)/drivers/pwm/pwm-bcm2835.ko
|
|
AUTOLOAD:=$(call AutoLoad,60,pwm-bcm2835)
|
|
DEPENDS:=@TARGET_bcm27xx
|
|
endef
|
|
|
|
define KernelPackage/pwm-bcm2835/description
|
|
This package contains the PWM framework driver for BCM2835 controller (Raspberry Pi)
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,pwm-bcm2835))
|
|
|
|
|
|
define KernelPackage/pwm-raspberrypi-poe
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=Raspberry Pi Firwmware PoE Hat PWM support
|
|
KCONFIG:= \
|
|
CONFIG_PWM=y \
|
|
CONFIG_PWM_RASPBERRYPI_POE
|
|
FILES:=$(LINUX_DIR)/drivers/pwm/pwm-raspberrypi-poe.ko
|
|
AUTOLOAD:=$(call AutoLoad,20,pwm-raspberrypi-poe)
|
|
DEPENDS:=@TARGET_bcm27xx @LINUX_5_15
|
|
endef
|
|
|
|
define KernelPackage/pwm-raspberrypi-poe/description
|
|
This package provides Raspberry Pi Firwmware PoE Hat PWM support
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,pwm-raspberrypi-poe))
|
|
|
|
|
|
define KernelPackage/smi-bcm2835
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=BCM2835 SMI driver
|
|
KCONFIG:=CONFIG_BCM2835_SMI
|
|
FILES:=$(LINUX_DIR)/drivers/misc/bcm2835_smi.ko
|
|
AUTOLOAD:=$(call AutoLoad,20,bcm2835_smi)
|
|
DEPENDS:=@TARGET_bcm27xx
|
|
endef
|
|
|
|
define KernelPackage/smi-bcm2835/description
|
|
This package contains the Character device driver for Broadcom Secondary
|
|
Memory Interface
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,smi-bcm2835))
|
|
|
|
|
|
define KernelPackage/smi-bcm2835-dev
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=BCM2835 SMI device driver
|
|
KCONFIG:=CONFIG_BCM2835_SMI_DEV
|
|
FILES:=$(LINUX_DIR)/drivers/char/broadcom/bcm2835_smi_dev.ko
|
|
AUTOLOAD:=$(call AutoLoad,21,bcm2835_smi_dev)
|
|
DEPENDS:=@TARGET_bcm27xx +kmod-smi-bcm2835
|
|
endef
|
|
|
|
define KernelPackage/smi-bcm2835-dev/description
|
|
This driver provides a character device interface (ioctl + read/write) to
|
|
Broadcom's Secondary Memory interface. The low-level functionality is provided
|
|
by the SMI driver itself.
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,smi-bcm2835-dev))
|