2024-09-09 08:57:42 +00:00
|
|
|
/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
|
2024-09-09 08:52:07 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
|
|
* only version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_ARM_MACH_MSM_CLOCK_LOCAL_2_H
|
|
|
|
#define __ARCH_ARM_MACH_MSM_CLOCK_LOCAL_2_H
|
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
2024-09-09 08:57:42 +00:00
|
|
|
#include <linux/clk/msm-clk-provider.h>
|
|
|
|
#include <linux/clk/msm-clk.h>
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic frequency-definition structs and macros
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @freq_hz: output rate
|
2024-09-09 08:57:42 +00:00
|
|
|
* @src_freq: source freq for dynamic pll. For fixed plls, set to 0.
|
2024-09-09 08:52:07 +00:00
|
|
|
* @src_clk: source clock for freq_hz
|
|
|
|
* @m_val: M value corresponding to freq_hz
|
|
|
|
* @n_val: N value corresponding to freq_hz
|
|
|
|
* @d_val: D value corresponding to freq_hz
|
|
|
|
* @div_src_val: Pre divider value and source selection mux index for freq_hz
|
|
|
|
* @sys_vdd: Voltage level required for freq_hz
|
|
|
|
*/
|
|
|
|
struct clk_freq_tbl {
|
|
|
|
unsigned long freq_hz;
|
2024-09-09 08:57:42 +00:00
|
|
|
unsigned long src_freq;
|
2024-09-09 08:52:07 +00:00
|
|
|
struct clk *src_clk;
|
|
|
|
u32 m_val;
|
|
|
|
u32 n_val;
|
|
|
|
u32 d_val;
|
|
|
|
u32 div_src_val;
|
|
|
|
const unsigned sys_vdd;
|
|
|
|
};
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#define FREQ_END (ULONG_MAX-1)
|
2024-09-09 08:52:07 +00:00
|
|
|
#define F_END { .freq_hz = FREQ_END }
|
2024-09-09 08:57:42 +00:00
|
|
|
#define FIXED_CLK_SRC 0
|
2024-09-09 08:52:07 +00:00
|
|
|
/*
|
|
|
|
* Generic clock-definition struct and macros
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* struct rcg_clk - root clock generator
|
|
|
|
* @cmd_rcgr_reg: command register
|
|
|
|
* @set_rate: function to set frequency
|
|
|
|
* @freq_tbl: frequency table for this RCG
|
|
|
|
* @current_freq: current RCG frequency
|
|
|
|
* @c: generic clock data
|
2024-09-09 08:57:42 +00:00
|
|
|
* @non_local_children: set if RCG has at least one branch owned by a diff EE
|
|
|
|
* @force_enable_rcgr: set if RCG needs to be force enabled/disabled during
|
|
|
|
* power sequence
|
2024-09-09 08:52:07 +00:00
|
|
|
* @base: pointer to base address of ioremapped registers.
|
|
|
|
*/
|
|
|
|
struct rcg_clk {
|
2024-09-09 08:57:42 +00:00
|
|
|
u32 cmd_rcgr_reg;
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
void (*set_rate)(struct rcg_clk *, struct clk_freq_tbl *);
|
|
|
|
|
|
|
|
struct clk_freq_tbl *freq_tbl;
|
|
|
|
struct clk_freq_tbl *current_freq;
|
|
|
|
struct clk c;
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
bool non_local_children;
|
|
|
|
bool force_enable_rcgr;
|
2024-09-09 08:52:07 +00:00
|
|
|
void *const __iomem *base;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct rcg_clk *to_rcg_clk(struct clk *clk)
|
|
|
|
{
|
|
|
|
return container_of(clk, struct rcg_clk, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern struct clk_freq_tbl rcg_dummy_freq;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct branch_clk - branch clock
|
|
|
|
* @set_rate: Set the frequency of this branch clock.
|
|
|
|
* @c: clk
|
|
|
|
* @cbcr_reg: branch control register
|
|
|
|
* @bcr_reg: block reset register
|
|
|
|
* @has_sibling: true if other branches are derived from this branch's source
|
|
|
|
* @cur_div: current branch divider value
|
|
|
|
* @max_div: maximum branch divider value (if zero, no divider exists)
|
|
|
|
* @halt_check: halt checking type
|
2024-09-09 08:57:42 +00:00
|
|
|
* @toggle_memory: toggle memory during enable/disable if true
|
|
|
|
* @no_halt_check_on_disable: When set, do not check status bit during
|
|
|
|
* clk_disable().
|
|
|
|
* @check_enable_bit: Check the enable bit to determine clock status
|
|
|
|
during handoff.
|
2024-09-09 08:52:07 +00:00
|
|
|
* @base: pointer to base address of ioremapped registers.
|
|
|
|
*/
|
|
|
|
struct branch_clk {
|
|
|
|
void (*set_rate)(struct branch_clk *, struct clk_freq_tbl *);
|
|
|
|
struct clk c;
|
2024-09-09 08:57:42 +00:00
|
|
|
u32 cbcr_reg;
|
|
|
|
u32 bcr_reg;
|
2024-09-09 08:52:07 +00:00
|
|
|
int has_sibling;
|
|
|
|
u32 cur_div;
|
2024-09-09 08:57:42 +00:00
|
|
|
u32 max_div;
|
2024-09-09 08:52:07 +00:00
|
|
|
const u32 halt_check;
|
2024-09-09 08:57:42 +00:00
|
|
|
bool toggle_memory;
|
|
|
|
bool no_halt_check_on_disable;
|
|
|
|
bool check_enable_bit;
|
2024-09-09 08:52:07 +00:00
|
|
|
void *const __iomem *base;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct branch_clk *to_branch_clk(struct clk *clk)
|
|
|
|
{
|
|
|
|
return container_of(clk, struct branch_clk, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct local_vote_clk - Voteable branch clock
|
|
|
|
* @c: clk
|
|
|
|
* @cbcr_reg: branch control register
|
|
|
|
* @vote_reg: voting register
|
|
|
|
* @en_mask: enable mask
|
|
|
|
* @halt_check: halt checking type
|
|
|
|
* @base: pointer to base address of ioremapped registers.
|
|
|
|
* An on/off switch with a rate derived from the parent.
|
|
|
|
*/
|
|
|
|
struct local_vote_clk {
|
|
|
|
struct clk c;
|
2024-09-09 08:57:42 +00:00
|
|
|
u32 cbcr_reg;
|
|
|
|
u32 vote_reg;
|
|
|
|
u32 bcr_reg;
|
|
|
|
u32 en_mask;
|
2024-09-09 08:52:07 +00:00
|
|
|
const u32 halt_check;
|
2024-09-09 08:57:42 +00:00
|
|
|
void * __iomem *base;
|
2024-09-09 08:52:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct local_vote_clk *to_local_vote_clk(struct clk *clk)
|
|
|
|
{
|
|
|
|
return container_of(clk, struct local_vote_clk, c);
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
/**
|
|
|
|
* struct reset_clk - Reset clock
|
|
|
|
* @c: clk
|
|
|
|
* @reset_reg: block reset register
|
|
|
|
* @base: pointer to base address of ioremapped registers.
|
|
|
|
*/
|
|
|
|
struct reset_clk {
|
|
|
|
struct clk c;
|
|
|
|
u32 reset_reg;
|
|
|
|
void *__iomem *base;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct reset_clk *to_reset_clk(struct clk *clk)
|
|
|
|
{
|
|
|
|
return container_of(clk, struct reset_clk, c);
|
|
|
|
}
|
2024-09-09 08:52:07 +00:00
|
|
|
/**
|
|
|
|
* struct measure_clk - for rate measurement debug use
|
|
|
|
* @sample_ticks: sample period in reference clock ticks
|
|
|
|
* @multiplier: measurement scale-up factor
|
|
|
|
* @divider: measurement scale-down factor
|
|
|
|
* @c: clk
|
|
|
|
*/
|
|
|
|
struct measure_clk {
|
|
|
|
u64 sample_ticks;
|
|
|
|
u32 multiplier;
|
|
|
|
u32 divider;
|
2024-09-09 08:57:42 +00:00
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
struct clk c;
|
|
|
|
};
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
struct measure_clk_data {
|
|
|
|
struct clk *cxo;
|
|
|
|
u32 plltest_reg;
|
|
|
|
u32 plltest_val;
|
|
|
|
u32 xo_div4_cbcr;
|
|
|
|
u32 ctl_reg;
|
|
|
|
u32 status_reg;
|
|
|
|
void *const __iomem *base;
|
|
|
|
};
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
static inline struct measure_clk *to_measure_clk(struct clk *clk)
|
|
|
|
{
|
|
|
|
return container_of(clk, struct measure_clk, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-09-09 08:57:42 +00:00
|
|
|
* struct gate_clk
|
2024-09-09 08:52:07 +00:00
|
|
|
* @c: clk
|
2024-09-09 08:57:42 +00:00
|
|
|
* @en_mask: ORed with @en_reg to enable gate clk
|
|
|
|
* @en_reg: register used to enable/disable gate clk
|
|
|
|
* @base: pointer to base address of ioremapped registers
|
2024-09-09 08:52:07 +00:00
|
|
|
*/
|
2024-09-09 08:57:42 +00:00
|
|
|
struct gate_clk {
|
2024-09-09 08:52:07 +00:00
|
|
|
struct clk c;
|
2024-09-09 08:57:42 +00:00
|
|
|
u32 en_mask;
|
|
|
|
u32 en_reg;
|
|
|
|
unsigned int delay_us;
|
2024-09-09 08:52:07 +00:00
|
|
|
void *const __iomem *base;
|
|
|
|
};
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
static inline struct gate_clk *to_gate_clk(struct clk *clk)
|
2024-09-09 08:52:07 +00:00
|
|
|
{
|
2024-09-09 08:57:42 +00:00
|
|
|
return container_of(clk, struct gate_clk, c);
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic set-rate implementations
|
|
|
|
*/
|
|
|
|
void set_rate_mnd(struct rcg_clk *clk, struct clk_freq_tbl *nf);
|
|
|
|
void set_rate_hid(struct rcg_clk *clk, struct clk_freq_tbl *nf);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Variables from the clock-local driver
|
|
|
|
*/
|
|
|
|
extern spinlock_t local_clock_reg_lock;
|
|
|
|
|
|
|
|
extern struct clk_ops clk_ops_empty;
|
|
|
|
extern struct clk_ops clk_ops_rcg;
|
|
|
|
extern struct clk_ops clk_ops_rcg_mnd;
|
|
|
|
extern struct clk_ops clk_ops_branch;
|
|
|
|
extern struct clk_ops clk_ops_vote;
|
|
|
|
extern struct clk_ops clk_ops_rcg_hdmi;
|
2024-09-09 08:57:42 +00:00
|
|
|
extern struct clk_ops clk_ops_rcg_edp;
|
2024-09-09 08:52:07 +00:00
|
|
|
extern struct clk_ops clk_ops_byte;
|
|
|
|
extern struct clk_ops clk_ops_pixel;
|
2024-09-09 08:57:42 +00:00
|
|
|
extern struct clk_ops clk_ops_byte_multiparent;
|
|
|
|
extern struct clk_ops clk_ops_pixel_multiparent;
|
|
|
|
extern struct clk_ops clk_ops_edppixel;
|
|
|
|
extern struct clk_ops clk_ops_gate;
|
|
|
|
extern struct clk_ops clk_ops_rst;
|
|
|
|
extern struct clk_mux_ops mux_reg_ops;
|
|
|
|
extern struct mux_div_ops rcg_mux_div_ops;
|
|
|
|
extern struct clk_div_ops postdiv_reg_ops;
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
enum handoff pixel_rcg_handoff(struct clk *clk);
|
|
|
|
enum handoff byte_rcg_handoff(struct clk *clk);
|
2024-09-09 08:57:42 +00:00
|
|
|
unsigned long measure_get_rate(struct clk *c);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clock definition macros
|
|
|
|
*/
|
|
|
|
#define DEFINE_CLK_MEASURE(name) \
|
|
|
|
struct clk name = { \
|
|
|
|
.ops = &clk_ops_empty, \
|
|
|
|
.dbg_name = #name, \
|
|
|
|
CLK_INIT(name), \
|
|
|
|
}; \
|
|
|
|
|
|
|
|
#endif /* __ARCH_ARM_MACH_MSM_CLOCK_LOCAL_2_H */
|
|
|
|
|