9
0
Fork 0

omap36x: Define structure for PER DPLL

The PER domain dpll significantly differs from 34x.
This patch defines struct to collate related info.

Signed-off-by: Sanjeev Premi <premi@ti.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sanjeev Premi 2011-01-03 19:54:50 +05:30 committed by Sascha Hauer
parent 82884c2b31
commit 76fab3545a
1 changed files with 12 additions and 0 deletions

View File

@ -124,6 +124,18 @@ struct dpll_param {
unsigned int fsel;
unsigned int m2;
};
struct dpll_param_per_36x {
unsigned int m;
unsigned int n;
unsigned int m2;
unsigned int m3;
unsigned int m4;
unsigned int m5;
unsigned int m6;
unsigned int m2div;
};
/* External functions see omap3_clock_core.S */
extern struct dpll_param *get_mpu_dpll_param_34x(u32);
extern struct dpll_param *get_iva_dpll_param_34x(u32);