hwmon.mk 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. #
  2. # Copyright (C) 2006-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. HWMON_MENU:=Hardware Monitoring Support
  8. define KernelPackage/hwmon-core
  9. SUBMENU:=$(HWMON_MENU)
  10. TITLE:=Hardware monitoring support
  11. KCONFIG:= \
  12. CONFIG_HWMON \
  13. CONFIG_HWMON_DEBUG_CHIP=n
  14. FILES:= \
  15. $(LINUX_DIR)/drivers/hwmon/hwmon.ko
  16. endef
  17. define KernelPackage/hwmon-core/description
  18. Kernel modules for hardware monitoring
  19. endef
  20. $(eval $(call KernelPackage,hwmon-core))
  21. define AddDepends/hwmon
  22. SUBMENU:=$(HWMON_MENU)
  23. DEPENDS:=kmod-hwmon-core $(1)
  24. endef
  25. define KernelPackage/hwmon-adt7410
  26. TITLE:=ADT7410 monitoring support
  27. KCONFIG:= \
  28. CONFIG_SENSORS_ADT7X10 \
  29. CONFIG_SENSORS_ADT7410
  30. FILES:= \
  31. $(LINUX_DIR)/drivers/hwmon/adt7x10.ko \
  32. $(LINUX_DIR)/drivers/hwmon/adt7410.ko
  33. AUTOLOAD:=$(call AutoLoad,60,adt7x10 adt7410)
  34. $(call AddDepends/hwmon,+kmod-i2c-core)
  35. endef
  36. define KernelPackage/hwmon-adt7410/description
  37. Kernel module for ADT7410/7420 I2C thermal monitor chip
  38. endef
  39. $(eval $(call KernelPackage,hwmon-adt7410))
  40. define KernelPackage/hwmon-adt7475
  41. TITLE:=ADT7473/7475/7476/7490 monitoring support
  42. KCONFIG:=CONFIG_SENSORS_ADT7475
  43. FILES:=$(LINUX_DIR)/drivers/hwmon/adt7475.ko
  44. AUTOLOAD:=$(call AutoProbe,adt7475)
  45. $(call AddDepends/hwmon,+kmod-i2c-core +kmod-hwmon-vid)
  46. endef
  47. define KernelPackage/hwmon-adt7475/description
  48. Kernel module for ADT7473/7475/7476/7490 thermal monitor chip
  49. endef
  50. $(eval $(call KernelPackage,hwmon-adt7475))
  51. define KernelPackage/hwmon-gpiofan
  52. TITLE:=Generic GPIO FAN support
  53. KCONFIG:=CONFIG_SENSORS_GPIO_FAN
  54. FILES:=$(LINUX_DIR)/drivers/hwmon/gpio-fan.ko
  55. AUTOLOAD:=$(call AutoLoad,60,gpio-fan)
  56. $(call AddDepends/hwmon,+kmod-i2c-core +PACKAGE_kmod-thermal:kmod-thermal)
  57. endef
  58. define KernelPackage/hwmon-gpiofan/description
  59. Kernel module for GPIO controlled FANs
  60. endef
  61. $(eval $(call KernelPackage,hwmon-gpiofan))
  62. define KernelPackage/hwmon-ina209
  63. TITLE:=INA209 monitoring support
  64. KCONFIG:=CONFIG_SENSORS_INA209
  65. FILES:=$(LINUX_DIR)/drivers/hwmon/ina209.ko
  66. AUTOLOAD:=$(call AutoProbe,ina209)
  67. $(call AddDepends/hwmon,+kmod-i2c-core)
  68. endef
  69. define KernelPackage/hwmon-ina209/description
  70. Kernel module for ina209 dc power monitor chips
  71. endef
  72. $(eval $(call KernelPackage,hwmon-ina209))
  73. define KernelPackage/hwmon-ina2xx
  74. TITLE:=INA2XX monitoring support
  75. KCONFIG:=CONFIG_SENSORS_INA2XX
  76. FILES:=$(LINUX_DIR)/drivers/hwmon/ina2xx.ko
  77. AUTOLOAD:=$(call AutoProbe,ina2xx)
  78. $(call AddDepends/hwmon,+kmod-i2c-core +!LINUX_3_18:kmod-regmap)
  79. endef
  80. define KernelPackage/hwmon-ina2xx/description
  81. Kernel module for ina2xx dc current monitor chips
  82. endef
  83. $(eval $(call KernelPackage,hwmon-ina2xx))
  84. define KernelPackage/hwmon-it87
  85. TITLE:=IT87 monitoring support
  86. KCONFIG:=CONFIG_SENSORS_IT87
  87. FILES:=$(LINUX_DIR)/drivers/hwmon/it87.ko
  88. AUTOLOAD:=$(call AutoProbe,it87)
  89. $(call AddDepends/hwmon,+kmod-i2c-core +kmod-hwmon-vid +PACKAGE_kmod-thermal:kmod-thermal)
  90. endef
  91. define KernelPackage/hwmon-it87/description
  92. Kernel module for it87 thermal and voltage monitor chip
  93. endef
  94. $(eval $(call KernelPackage,hwmon-it87))
  95. define KernelPackage/hwmon-lm63
  96. TITLE:=LM63/64 monitoring support
  97. KCONFIG:=CONFIG_SENSORS_LM63
  98. FILES:=$(LINUX_DIR)/drivers/hwmon/lm63.ko
  99. AUTOLOAD:=$(call AutoProbe,lm63)
  100. $(call AddDepends/hwmon,+kmod-i2c-core +kmod-regmap)
  101. endef
  102. define KernelPackage/hwmon-lm63/description
  103. Kernel module for lm63 and lm64 thermal monitor chip
  104. endef
  105. $(eval $(call KernelPackage,hwmon-lm63))
  106. define KernelPackage/hwmon-lm75
  107. TITLE:=LM75 monitoring support
  108. KCONFIG:=CONFIG_SENSORS_LM75
  109. FILES:=$(LINUX_DIR)/drivers/hwmon/lm75.ko
  110. AUTOLOAD:=$(call AutoProbe,lm75)
  111. $(call AddDepends/hwmon,+kmod-i2c-core +PACKAGE_kmod-thermal:kmod-thermal +kmod-regmap)
  112. endef
  113. define KernelPackage/hwmon-lm75/description
  114. Kernel module for lm75 thermal monitor chip
  115. endef
  116. $(eval $(call KernelPackage,hwmon-lm75))
  117. define KernelPackage/hwmon-lm77
  118. TITLE:=LM77 monitoring support
  119. KCONFIG:=CONFIG_SENSORS_LM77
  120. FILES:=$(LINUX_DIR)/drivers/hwmon/lm77.ko
  121. AUTOLOAD:=$(call AutoProbe,lm77)
  122. $(call AddDepends/hwmon,+kmod-i2c-core)
  123. endef
  124. define KernelPackage/hwmon-lm77/description
  125. Kernel module for LM77 thermal monitor chip
  126. endef
  127. $(eval $(call KernelPackage,hwmon-lm77))
  128. define KernelPackage/hwmon-lm85
  129. TITLE:=LM85 monitoring support
  130. KCONFIG:=CONFIG_SENSORS_LM85
  131. FILES:=$(LINUX_DIR)/drivers/hwmon/lm85.ko
  132. AUTOLOAD:=$(call AutoProbe,lm85)
  133. $(call AddDepends/hwmon,+kmod-i2c-core +kmod-hwmon-vid)
  134. endef
  135. define KernelPackage/hwmon-lm85/description
  136. Kernel module for LM85 thermal monitor chip
  137. endef
  138. $(eval $(call KernelPackage,hwmon-lm85))
  139. define KernelPackage/hwmon-lm90
  140. TITLE:=LM90 monitoring support
  141. KCONFIG:=CONFIG_SENSORS_LM90
  142. FILES:=$(LINUX_DIR)/drivers/hwmon/lm90.ko
  143. AUTOLOAD:=$(call AutoProbe,lm90)
  144. $(call AddDepends/hwmon,+kmod-i2c-core)
  145. endef
  146. define KernelPackage/hwmon-lm90/description
  147. Kernel module for LM90 thermal monitor chip
  148. endef
  149. $(eval $(call KernelPackage,hwmon-lm90))
  150. define KernelPackage/hwmon-lm92
  151. TITLE:=LM92 monitoring support
  152. KCONFIG:=CONFIG_SENSORS_LM92
  153. FILES:=$(LINUX_DIR)/drivers/hwmon/lm92.ko
  154. AUTOLOAD:=$(call AutoProbe,lm92)
  155. $(call AddDepends/hwmon,+kmod-i2c-core)
  156. endef
  157. define KernelPackage/hwmon-lm92/description
  158. Kernel module for LM92 thermal monitor chip
  159. endef
  160. $(eval $(call KernelPackage,hwmon-lm92))
  161. define KernelPackage/hwmon-lm95241
  162. TITLE:=LM95241 monitoring support
  163. KCONFIG:=CONFIG_SENSORS_LM95241
  164. FILES:=$(LINUX_DIR)/drivers/hwmon/lm95241.ko
  165. AUTOLOAD:=$(call AutoProbe,lm95241)
  166. $(call AddDepends/hwmon,+kmod-i2c-core)
  167. endef
  168. define KernelPackage/hwmon-lm95241/description
  169. Kernel module for LM95241 thermal monitor chip
  170. endef
  171. $(eval $(call KernelPackage,hwmon-lm95241))
  172. define KernelPackage/hwmon-ltc4151
  173. TITLE:=LTC4151 monitoring support
  174. KCONFIG:=CONFIG_SENSORS_LTC4151
  175. FILES:=$(LINUX_DIR)/drivers/hwmon/ltc4151.ko
  176. AUTOLOAD:=$(call AutoProbe,ltc4151)
  177. $(call AddDepends/hwmon,+kmod-i2c-core)
  178. endef
  179. define KernelPackage/hwmon-ltc4151/description
  180. Kernel module for Linear Technology LTC4151 current and voltage monitor chip
  181. endef
  182. $(eval $(call KernelPackage,hwmon-ltc4151))
  183. define KernelPackage/hwmon-nct6775
  184. TITLE:=NCT6106D/6775F/6776F/6779D/6791D/6792D/6793D and compatibles monitoring support
  185. KCONFIG:=CONFIG_SENSORS_NCT6775
  186. FILES:=$(LINUX_DIR)/drivers/hwmon/nct6775.ko
  187. AUTOLOAD:=$(call AutoProbe,nct6775)
  188. $(call AddDepends/hwmon,@PCI_SUPPORT @TARGET_x86 +kmod-hwmon-vid)
  189. endef
  190. define KernelPackage/hwmon-nct6775/description
  191. Kernel module for NCT6106D/6775F/6776F/6779D/6791D/6792D/6793D thermal monitor chip
  192. endef
  193. $(eval $(call KernelPackage,hwmon-nct6775))
  194. define KernelPackage/hwmon-pc87360
  195. TITLE:=PC87360 monitoring support
  196. KCONFIG:=CONFIG_SENSORS_PC87360
  197. FILES:=$(LINUX_DIR)/drivers/hwmon/pc87360.ko
  198. AUTOLOAD:=$(call AutoProbe,pc87360)
  199. $(call AddDepends/hwmon,@TARGET_x86 +kmod-hwmon-vid)
  200. endef
  201. define KernelPackage/hwmon-pc87360/description
  202. Kernel modules for PC87360 chips
  203. endef
  204. $(eval $(call KernelPackage,hwmon-pc87360))
  205. define KernelPackage/hwmon-pwmfan
  206. TITLE:=Generic PWM FAN support
  207. KCONFIG:=CONFIG_SENSORS_PWM_FAN
  208. FILES:=$(LINUX_DIR)/drivers/hwmon/pwm-fan.ko
  209. AUTOLOAD:=$(call AutoLoad,60,pwm-fan)
  210. $(call AddDepends/hwmon, +PACKAGE_kmod-thermal:kmod-thermal)
  211. endef
  212. define KernelPackage/hwmon-pwmfan/description
  213. Kernel module for PWM controlled FANs
  214. endef
  215. $(eval $(call KernelPackage,hwmon-pwmfan))
  216. define KernelPackage/hwmon-sch5627
  217. TITLE:=SMSC SCH5627 monitoring support
  218. KCONFIG:=CONFIG_SENSORS_SCH5627
  219. FILES:= \
  220. $(LINUX_DIR)/drivers/hwmon/sch5627.ko \
  221. $(LINUX_DIR)/drivers/hwmon/sch56xx-common.ko
  222. AUTOLOAD:=$(call AutoProbe,sch5627)
  223. $(call AddDepends/hwmon,+kmod-i2c-core)
  224. endef
  225. define KernelPackage/hwmon-sch5627/description
  226. SMSC SCH5627 Super I/O chips include complete hardware monitoring
  227. endef
  228. $(eval $(call KernelPackage,hwmon-sch5627))
  229. define KernelPackage/hwmon-sht21
  230. TITLE:=Sensiron SHT21 and compat. monitoring support
  231. KCONFIG:=CONFIG_SENSORS_SHT21
  232. FILES:=$(LINUX_DIR)/drivers/hwmon/sht21.ko
  233. AUTOLOAD:=$(call AutoProbe,sht21)
  234. $(call AddDepends/hwmon,+kmod-i2c-core)
  235. endef
  236. define KernelPackage/hwmon-sht21/description
  237. Kernel module for Sensirion SHT21 and SHT25 temperature and humidity sensors chip
  238. endef
  239. $(eval $(call KernelPackage,hwmon-sht21))
  240. define KernelPackage/hwmon-tmp102
  241. TITLE:=Texas Instruments TMP102 monitoring support
  242. KCONFIG:=CONFIG_SENSORS_TMP102
  243. FILES:=$(LINUX_DIR)/drivers/hwmon/tmp102.ko
  244. AUTOLOAD:=$(call AutoProbe,tmp102)
  245. $(call AddDepends/hwmon,+kmod-i2c-core +PACKAGE_kmod-thermal:kmod-thermal +kmod-regmap)
  246. endef
  247. define KernelPackage/hwmon-tmp102/description
  248. Kernel module for Texas Instruments TMP102 temperature sensors chip
  249. endef
  250. $(eval $(call KernelPackage,hwmon-tmp102))
  251. define KernelPackage/hwmon-tmp103
  252. TITLE:=Texas Instruments TMP103 monitoring support
  253. KCONFIG:=CONFIG_SENSORS_TMP103
  254. FILES:=$(LINUX_DIR)/drivers/hwmon/tmp103.ko
  255. AUTOLOAD:=$(call AutoProbe,tmp103)
  256. $(call AddDepends/hwmon,+kmod-i2c-core +kmod-regmap)
  257. endef
  258. define KernelPackage/hwmon-tmp103/description
  259. Kernel module for Texas Instruments TMP103 temperature sensors chip
  260. endef
  261. $(eval $(call KernelPackage,hwmon-tmp103))
  262. define KernelPackage/hwmon-tmp421
  263. TITLE:=TI TMP421 and compatible monitoring support
  264. KCONFIG:=CONFIG_SENSORS_TMP421
  265. FILES:=$(LINUX_DIR)/drivers/hwmon/tmp421.ko
  266. AUTOLOAD:=$(call AutoLoad,60,tmp421)
  267. $(call AddDepends/hwmon,+kmod-i2c-core)
  268. endef
  269. define KernelPackage/hwmon-tmp421/description
  270. Kernel module for the Texas Instruments TMP421 and compatible chips.
  271. endef
  272. $(eval $(call KernelPackage,hwmon-tmp421))
  273. define KernelPackage/hwmon-vid
  274. TITLE:=VID/VRM/VRD voltage conversion module.
  275. KCONFIG:=CONFIG_HWMON_VID
  276. FILES:=$(LINUX_DIR)/drivers/hwmon/hwmon-vid.ko
  277. AUTOLOAD:=$(call AutoLoad,41,hwmon-vid)
  278. $(call AddDepends/hwmon,)
  279. endef
  280. define KernelPackage/hwmon-vid/description
  281. VID/VRM/VRD voltage conversion module for hardware monitoring
  282. endef
  283. $(eval $(call KernelPackage,hwmon-vid))
  284. define KernelPackage/hwmon-w83627ehf
  285. TITLE:=Winbond W83627EHF/EHG/DHG/UHG, W83667HG monitoring support
  286. KCONFIG:=CONFIG_SENSORS_W83627EHF
  287. FILES:=$(LINUX_DIR)/drivers/hwmon/w83627ehf.ko
  288. AUTOLOAD:=$(call AutoProbe,w83627ehf)
  289. $(call AddDepends/hwmon,@TARGET_x86 +kmod-hwmon-vid)
  290. endef
  291. define KernelPackage/hwmon-w83627ehf/description
  292. Kernel module for Winbond W83627EHF/EHG/DHG/UHG and W83667HG thermal monitor chip
  293. Support for NCT6775F and NCT6776F has been removed from this driver in favour of
  294. using the nct6775 driver to handle those chips.
  295. endef
  296. $(eval $(call KernelPackage,hwmon-w83627ehf))
  297. define KernelPackage/hwmon-w83627hf
  298. TITLE:=Winbond W83627HF monitoring support
  299. KCONFIG:=CONFIG_SENSORS_W83627HF
  300. FILES:=$(LINUX_DIR)/drivers/hwmon/w83627hf.ko
  301. AUTOLOAD:=$(call AutoLoad,50,w83627hf)
  302. $(call AddDepends/hwmon,@TARGET_x86 +kmod-hwmon-vid)
  303. endef
  304. define KernelPackage/hwmon-w83627hf/description
  305. Kernel module for the Winbond W83627HF chips.
  306. endef
  307. $(eval $(call KernelPackage,hwmon-w83627hf))
  308. define KernelPackage/hwmon-w83793
  309. TITLE:=Winbond W83793G/R monitoring support
  310. KCONFIG:=CONFIG_SENSORS_W83793
  311. FILES:=$(LINUX_DIR)/drivers/hwmon/w83793.ko
  312. AUTOLOAD:=$(call AutoProbe,w83793)
  313. $(call AddDepends/hwmon,+kmod-i2c-core +kmod-hwmon-vid)
  314. endef
  315. define KernelPackage/hwmon-w83793/description
  316. Kernel module for the Winbond W83793G and W83793R chips.
  317. endef
  318. $(eval $(call KernelPackage,hwmon-w83793))
  319. define KernelPackage/hwmon-adcxx
  320. TITLE:=ADCxx monitoring support
  321. KCONFIG:=CONFIG_SENSORS_ADCXX
  322. FILES:=$(LINUX_DIR)/drivers/hwmon/adcxx.ko
  323. AUTOLOAD:=$(call AutoLoad,60,adcxx)
  324. $(call AddDepends/hwmon,)
  325. endef
  326. define KernelPackage/hwmon-adcxx/description
  327. Kernel module for the National Semiconductor
  328. ADC<bb><c>S<sss> chip family, where
  329. * bb is the resolution in number of bits (8, 10, 12)
  330. * c is the number of channels (1, 2, 4, 8)
  331. * sss is the maximum conversion speed (021 for 200 kSPS, 051 for 500
  332. kSPS and 101 for 1 MSPS)
  333. Examples : ADC081S101, ADC124S501, ...
  334. endef
  335. $(eval $(call KernelPackage,hwmon-adcxx))