9c057b3e02
This add south-bridge (SB700/SB710/SB800 chipset) ACPI platform driver for Loongson-3. This will be used by EC (Embedded Controller, used by laptops) driver and STR (Suspend To RAM). [ralf@linux-mips.org: Fix build error if !CONFIG_CPU_LOONGSON3. Build doesn't like it if no obj-* variable is defined at all in a Makefile. Obviously this has not been tested on other platforms.] Signed-off-by: Huacai Chen <chenhc@lemote.com> Cc: Steven J. Hill <Steven.Hill@imgtec.com> Cc: linux-mips@linux-mips.org Cc: Fuxin Zhang <zhangfx@lemote.com> Cc: Zhangjin Wu <wuzhangjin@gmail.com> Patchwork: https://patchwork.linux-mips.org/patch/9619/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
31 lines
722 B
Plaintext
31 lines
722 B
Plaintext
#
|
|
# MIPS Platform Specific Drivers
|
|
#
|
|
|
|
menuconfig MIPS_PLATFORM_DEVICES
|
|
bool "MIPS Platform Specific Device Drivers"
|
|
default y
|
|
help
|
|
Say Y here to get to see options for device drivers of various
|
|
MIPS platforms, including vendor-specific netbook/laptop/desktop
|
|
extension and hardware monitor drivers. This option itself does
|
|
not add any kernel code.
|
|
|
|
If you say N, all options in this submenu will be skipped and disabled.
|
|
|
|
if MIPS_PLATFORM_DEVICES
|
|
|
|
config MIPS_ACPI
|
|
bool
|
|
default y if LOONGSON_MACH3X
|
|
|
|
config CPU_HWMON
|
|
tristate "Loongson CPU HWMon Driver"
|
|
depends on LOONGSON_MACH3X
|
|
select HWMON
|
|
default y
|
|
help
|
|
Loongson-3A/3B CPU Hwmon (temperature sensor) driver.
|
|
|
|
endif # MIPS_PLATFORM_DEVICES
|