mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2024-12-28 16:53:49 +00:00
cdd30ebb1b
Clean up the existing export namespace code along the same lines of
commit 33def8498f
("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.
Scripted using
git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
do
awk -i inplace '
/^#define EXPORT_SYMBOL_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/^#define MODULE_IMPORT_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/MODULE_IMPORT_NS/ {
$0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
}
/EXPORT_SYMBOL_NS/ {
if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
$0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
$0 !~ /^my/) {
getline line;
gsub(/[[:space:]]*\\$/, "");
gsub(/[[:space:]]/, "", line);
$0 = $0 " " line;
}
$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
"\\1(\\2, \"\\3\")", "g");
}
}
{ print }' $file;
done
Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
75 lines
1.7 KiB
C
75 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* DesignWare PWM Controller driver
|
|
*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* Author: Felipe Balbi (Intel)
|
|
* Author: Jarkko Nikula <jarkko.nikula@linux.intel.com>
|
|
* Author: Raymond Tan <raymond.tan@intel.com>
|
|
*/
|
|
|
|
MODULE_IMPORT_NS("dwc_pwm");
|
|
|
|
#define DWC_TIM_LD_CNT(n) ((n) * 0x14)
|
|
#define DWC_TIM_LD_CNT2(n) (((n) * 4) + 0xb0)
|
|
#define DWC_TIM_CUR_VAL(n) (((n) * 0x14) + 0x04)
|
|
#define DWC_TIM_CTRL(n) (((n) * 0x14) + 0x08)
|
|
#define DWC_TIM_EOI(n) (((n) * 0x14) + 0x0c)
|
|
#define DWC_TIM_INT_STS(n) (((n) * 0x14) + 0x10)
|
|
|
|
#define DWC_TIMERS_INT_STS 0xa0
|
|
#define DWC_TIMERS_EOI 0xa4
|
|
#define DWC_TIMERS_RAW_INT_STS 0xa8
|
|
#define DWC_TIMERS_COMP_VERSION 0xac
|
|
|
|
#define DWC_TIMERS_TOTAL 8
|
|
|
|
/* Timer Control Register */
|
|
#define DWC_TIM_CTRL_EN BIT(0)
|
|
#define DWC_TIM_CTRL_MODE BIT(1)
|
|
#define DWC_TIM_CTRL_MODE_FREE (0 << 1)
|
|
#define DWC_TIM_CTRL_MODE_USER (1 << 1)
|
|
#define DWC_TIM_CTRL_INT_MASK BIT(2)
|
|
#define DWC_TIM_CTRL_PWM BIT(3)
|
|
|
|
struct dwc_pwm_info {
|
|
unsigned int nr;
|
|
unsigned int size;
|
|
};
|
|
|
|
struct dwc_pwm_drvdata {
|
|
const struct dwc_pwm_info *info;
|
|
void __iomem *io_base;
|
|
struct pwm_chip *chips[];
|
|
};
|
|
|
|
struct dwc_pwm_ctx {
|
|
u32 cnt;
|
|
u32 cnt2;
|
|
u32 ctrl;
|
|
};
|
|
|
|
struct dwc_pwm {
|
|
void __iomem *base;
|
|
unsigned int clk_ns;
|
|
struct dwc_pwm_ctx ctx[DWC_TIMERS_TOTAL];
|
|
};
|
|
|
|
static inline struct dwc_pwm *to_dwc_pwm(struct pwm_chip *chip)
|
|
{
|
|
return pwmchip_get_drvdata(chip);
|
|
}
|
|
|
|
static inline u32 dwc_pwm_readl(struct dwc_pwm *dwc, u32 offset)
|
|
{
|
|
return readl(dwc->base + offset);
|
|
}
|
|
|
|
static inline void dwc_pwm_writel(struct dwc_pwm *dwc, u32 value, u32 offset)
|
|
{
|
|
writel(value, dwc->base + offset);
|
|
}
|
|
|
|
extern struct pwm_chip *dwc_pwm_alloc(struct device *dev);
|