123456789101112131415161718192021222324252627282930313233 |
- #ifndef __PMC_H_
- #define __PMC_H_
- #include <linux/io.h>
- #include <linux/irqdomain.h>
- #include <linux/regmap.h>
- #include <linux/spinlock.h>
- extern spinlock_t pmc_pcr_lock;
- struct clk_range {
- unsigned long min;
- unsigned long max;
- };
- #define CLK_RANGE(MIN, MAX) {.min = MIN, .max = MAX,}
- int of_at91_get_clk_range(struct device_node *np, const char *propname,
- struct clk_range *range);
- #endif
|