]> Git Repo - linux.git/blobdiff - drivers/pwm/pwm-lpss-platform.c
thp: fix MADV_DONTNEED vs. MADV_FREE race
[linux.git] / drivers / pwm / pwm-lpss-platform.c
index 54433fc6d1a4e491e9e046b20558e093d7c5c4de..5d6ed1507d29284f2ba28f2cc781f4b797067f01 100644 (file)
 
 #include "pwm-lpss.h"
 
+/* BayTrail */
+static const struct pwm_lpss_boardinfo pwm_lpss_byt_info = {
+       .clk_rate = 25000000,
+       .npwm = 1,
+       .base_unit_bits = 16,
+};
+
+/* Braswell */
+static const struct pwm_lpss_boardinfo pwm_lpss_bsw_info = {
+       .clk_rate = 19200000,
+       .npwm = 1,
+       .base_unit_bits = 16,
+};
+
+/* Broxton */
+static const struct pwm_lpss_boardinfo pwm_lpss_bxt_info = {
+       .clk_rate = 19200000,
+       .npwm = 4,
+       .base_unit_bits = 22,
+       .bypass = true,
+};
+
 static int pwm_lpss_probe_platform(struct platform_device *pdev)
 {
        const struct pwm_lpss_boardinfo *info;
This page took 0.03279 seconds and 4 git commands to generate.