mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
Merge pull request 'cpg: add superhyway clock frequency calculation' (#36) from CalcLoverHK/gint:dev into dev
Reviewed-on: https://git.planet-casio.com/Lephenixnoir/gint/pulls/36
This commit is contained in:
commit
191a5ebccf
2 changed files with 5 additions and 0 deletions
|
@ -35,6 +35,7 @@ typedef struct
|
|||
int Bphi_div;
|
||||
int Iphi_div;
|
||||
int Pphi_div;
|
||||
int Sphi_div;
|
||||
|
||||
union {
|
||||
int CKIO_f;
|
||||
|
@ -44,6 +45,7 @@ typedef struct
|
|||
int Bphi_f;
|
||||
int Iphi_f;
|
||||
int Pphi_f;
|
||||
int Sphi_f;
|
||||
|
||||
} clock_frequency_t;
|
||||
|
||||
|
|
|
@ -84,10 +84,12 @@ static void sh7305_probe(void)
|
|||
int divb = CPG.FRQCR.BFC;
|
||||
int divi = CPG.FRQCR.IFC;
|
||||
int divp = CPG.FRQCR.P1FC;
|
||||
int divs = CPG.FRQCR.SFC;
|
||||
|
||||
freq.Bphi_div = 1 << (divb + 1);
|
||||
freq.Iphi_div = 1 << (divi + 1);
|
||||
freq.Pphi_div = 1 << (divp + 1);
|
||||
freq.Sphi_div = 1 << (divs + 1);
|
||||
|
||||
/* Deduce the input frequency of divider 1 */
|
||||
int base = 32768;
|
||||
|
@ -99,6 +101,7 @@ static void sh7305_probe(void)
|
|||
freq.Bphi_f = base >> (divb + 1);
|
||||
freq.Iphi_f = base >> (divi + 1);
|
||||
freq.Pphi_f = base >> (divp + 1);
|
||||
freq.Sphi_f = base >> (divs + 1);
|
||||
}
|
||||
|
||||
#undef CPG
|
||||
|
|
Loading…
Add table
Reference in a new issue