Skip to content

Commit

Permalink
drivers: pwm: Add support for pch intel blink driver
Browse files Browse the repository at this point in the history
This patch adds support for PWM blink which is found in intel's
PCH hardwares.

Signed-off-by: Anisetti Avinash Krishna <[email protected]>
  • Loading branch information
akanisetti committed Jul 6, 2023
1 parent 14573fc commit bd493c3
Show file tree
Hide file tree
Showing 6 changed files with 175 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/pwm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ zephyr_library_sources_ifdef(CONFIG_PWM_PCA9685 pwm_pca9685.c)
zephyr_library_sources_ifdef(CONFIG_PWM_TEST pwm_test.c)
zephyr_library_sources_ifdef(CONFIG_PWM_RPI_PICO pwm_rpi_pico.c)
zephyr_library_sources_ifdef(CONFIG_PWM_BBLED_XEC pwm_mchp_xec_bbled.c)
zephyr_library_sources_ifdef(CONFIG_PWM_INTEL_BLINKY pwm_intel_blinky.c)

zephyr_library_sources_ifdef(CONFIG_USERSPACE pwm_handlers.c)
zephyr_library_sources_ifdef(CONFIG_PWM_CAPTURE pwm_capture.c)
Expand Down
2 changes: 2 additions & 0 deletions drivers/pwm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,6 @@ source "drivers/pwm/Kconfig.test"

source "drivers/pwm/Kconfig.rpi_pico"

source "drivers/pwm/Kconfig.intel_blinky"

endif # PWM
11 changes: 11 additions & 0 deletions drivers/pwm/Kconfig.intel_blinky
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Intel Blinky PWM configuration options

# Copyright (c) 2023 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

config PWM_INTEL_BLINKY
bool "Blinky PWM driver"
default y
depends on DT_HAS_INTEL_BLINKY_PWM_ENABLED
help
Enable the INTEL PCH PWM driver found on Intel SoCs
127 changes: 127 additions & 0 deletions drivers/pwm/pwm_intel_blinky.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
/*
* Copyright (c) 2023 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/

#define DT_DRV_COMPAT intel_blinky_pwm

#include <errno.h>
#include <zephyr/device.h>
#include <zephyr/kernel.h>
#include <zephyr/init.h>
#include <zephyr/sys/util.h>
#include <zephyr/devicetree.h>
#include <zephyr/drivers/pwm.h>

#define PWM_REG_OFFSET PWM_INTEL_CONTROL_OFFSET
#define PWM_ENABLE 0x80000000
#define PWM_SWUP 0x40000000
#define PWM_FREQ_INT_SHIFT 8
#define PWM_BASE_UNIT_FRACTION 14
#define PWM_FREQ_MAX 0x100
#define PWM_DUTY_MAX 0x100

struct bk_intel_config {
DEVICE_MMIO_NAMED_ROM(reg_base);
uint32_t clock_freq;
uint32_t max_pins;
};

struct bk_intel_runtime {
DEVICE_MMIO_NAMED_RAM(reg_base);
};

static int bk_intel_set_cycles(const struct device *dev, uint32_t pin,
uint32_t period_cycles, uint32_t pulse_cycles,
pwm_flags_t flags)
{
struct bk_intel_runtime *rt = dev->data;
const struct bk_intel_config *cfg = dev->config;
uint32_t ret = 0;
uint32_t val = 0;
uint32_t duty;
float period;
float out_freq;
uint32_t base_unit;

if (pin >= cfg->max_pins) {
ret = -EINVAL;
goto err;
}

out_freq = cfg->clock_freq / (float) period_cycles;
period = (out_freq * PWM_FREQ_MAX) / cfg->clock_freq;
base_unit = (uint32_t) (period * (1 << PWM_BASE_UNIT_FRACTION));
duty = (pulse_cycles * PWM_DUTY_MAX) / period_cycles;

if (duty) {
val = PWM_DUTY_MAX - duty;
val |= (base_unit << PWM_FREQ_INT_SHIFT);
} else {
val = PWM_DUTY_MAX - 1;
}

val |= PWM_ENABLE | PWM_SWUP;

if (period >= PWM_FREQ_MAX) {
ret = -EINVAL;
goto err;
}

if (duty > PWM_DUTY_MAX) {
ret = -EINVAL;
goto err;
}

sys_write32(val, rt->reg_base + PWM_REG_OFFSET);
err:
return ret;
}

static int bk_intel_get_cycles_per_sec(const struct device *dev, uint32_t pin,
uint64_t *cycles)
{
const struct bk_intel_config *cfg = dev->config;

if (pin >= cfg->max_pins) {
return -EINVAL;
}

*cycles = cfg->clock_freq;

return 0;
}

static const struct pwm_driver_api api_funcs = {
.set_cycles = bk_intel_set_cycles,
.get_cycles_per_sec = bk_intel_get_cycles_per_sec,
};

static int bk_intel_init(const struct device *dev)
{
struct bk_intel_runtime *runtime = dev->data;
const struct bk_intel_config *config = dev->config;

device_map(&runtime->reg_base,
config->reg_base.phys_addr & ~0xFFU,
config->reg_base.size,
K_MEM_CACHE_NONE);

return 0;
}

#define BK_INTEL_DEV_CFG(n) \
static const struct bk_intel_config bk_cfg_##n = { \
DEVICE_MMIO_NAMED_ROM_INIT(reg_base, DT_DRV_INST(n)), \
.max_pins = DT_INST_PROP(n, max_pins), \
.clock_freq = DT_INST_PROP(n, clock_frequency), \
}; \
\
static struct bk_intel_runtime bk_rt_##n; \
DEVICE_DT_INST_DEFINE(n, &bk_intel_init, NULL, \
&bk_rt_##n, &bk_cfg_##n, \
POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, \
&api_funcs); \

DT_INST_FOREACH_STATUS_OKAY(BK_INTEL_DEV_CFG)
30 changes: 30 additions & 0 deletions dts/bindings/pwm/intel,blinky-pwm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright (c) 2023 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0

description: Intel blinky PWM

compatible: "intel,blinky-pwm"

include: [pwm-controller.yaml, base.yaml]

properties:
reg:
required: true

clock-frequency:
type: int
required: true
description: PWM Peripheral Clock frequency in Hz

max-pins:
type: int
required: true
description: Maximum number of pins supported by platform

"#pwm-cells":
const: 2

pwm-cells:
- channel
- period
4 changes: 4 additions & 0 deletions soc/x86/raptor_lake/soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
#include "soc_gpio.h"
#endif

#ifdef CONFIG_PWM_INTEL_BLINKY
#define PWM_INTEL_CONTROL_OFFSET 0x304
#endif

#if DT_ON_BUS(DT_CHOSEN(zephyr_console), pcie)
#include <zephyr/drivers/pcie/pcie.h>
#define X86_SOC_EARLY_SERIAL_PCIDEV DT_REG_ADDR(DT_CHOSEN(zephyr_console))
Expand Down

0 comments on commit bd493c3

Please sign in to comment.