arm: iproc: Add higher speed configurations
authorChris Packham <judge.packham@gmail.com>
Fri, 4 Jun 2021 02:25:36 +0000 (14:25 +1200)
committerTom Rini <trini@konsulko.com>
Tue, 6 Jul 2021 18:07:36 +0000 (14:07 -0400)
Add support for 1.3GHz, 1.35GHz and 1.4GHz parts. This is based on
equivalent code in Broadcom's LDK 5.0.6.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
arch/arm/cpu/armv7/iproc-common/armpll.c

index efa3d9e..8c3a323 100644 (file)
@@ -19,19 +19,22 @@ struct armpll_parameters {
 };
 
 struct armpll_parameters armpll_clk_tab[] = {
-       {   25, 64,      1, 1, 0},
-       {  100, 64,      1, 1, 2},
-       {  400, 64,      1, 1, 6},
-       {  448, 71, 713050, 1, 6},
-       {  500, 80,      1, 1, 6},
-       {  560, 89, 629145, 1, 6},
-       {  600, 96,      1, 1, 6},
-       {  800, 64,      1, 1, 7},
-       {  896, 71, 713050, 1, 7},
-       { 1000, 80,      1, 1, 7},
-       { 1100, 88,      1, 1, 7},
-       { 1120, 89, 629145, 1, 7},
-       { 1200, 96,      1, 1, 7},
+       {   25,  64,      1, 1, 0},
+       {  100,  64,      1, 1, 2},
+       {  400,  64,      1, 1, 6},
+       {  448,  71, 713050, 1, 6},
+       {  500,  80,      1, 1, 6},
+       {  560,  89, 629145, 1, 6},
+       {  600,  96,      1, 1, 6},
+       {  800,  64,      1, 1, 7},
+       {  896,  71, 713050, 1, 7},
+       { 1000,  80,      1, 1, 7},
+       { 1100,  88,      1, 1, 7},
+       { 1120,  89, 629145, 1, 7},
+       { 1200,  96,      1, 1, 7},
+       { 1300, 104,      1, 1, 7},
+       { 1350, 108,      1, 1, 7},
+       { 1400, 112,      1, 1, 7},
 };
 
 uint32_t armpll_config(uint32_t clkmhz)