-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: dts: OMAP443x: Add CPU OPP table
Add DT OPP table for OMAP443x family of devices. This data is decoded by OF with of_init_opp_table() helper function. OPP data here is based on existing opp4xxx_data.c Since the omap4460 OPP tables would be different from OMAP443x, introduce an new omap443x.dtsi for 443x specific entries and use existing omap4.dtsi as the common dtsi file for all OMAP4 platforms. This is in preparation to use generic cpufreq-cpu0 driver for device tree enabled boot. Legacy non device tree enabled boot continues to use omap-cpufreq.c and opp4xxx_data.c. Signed-off-by: Nishanth Menon <nm@ti.com> Cc: Kevin Hilman <khilman@deeprootsystems.com> Cc: Jon Hunter <jon-hunter@ti.com> Cc: Santosh Shilimkar <santosh.shilimkar@ti.com> Cc: Shawn Guo <shawn.guo@linaro.org> Cc: Keerthy <j-keerthy@ti.com> Signed-off-by: Benoit Cousson <benoit.cousson@linaro.org>
- Loading branch information
Nishanth Menon
authored and
Benoit Cousson
committed
Apr 8, 2013
1 parent
a134be3
commit e77049b
Showing
4 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
*/ | ||
/dts-v1/; | ||
|
||
/include/ "omap4.dtsi" | ||
/include/ "omap443x.dtsi" | ||
/include/ "elpida_ecb240abacn.dtsi" | ||
|
||
/ { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
*/ | ||
/dts-v1/; | ||
|
||
/include/ "omap4.dtsi" | ||
/include/ "omap443x.dtsi" | ||
/include/ "elpida_ecb240abacn.dtsi" | ||
|
||
/ { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
*/ | ||
/dts-v1/; | ||
|
||
/include/ "omap4.dtsi" | ||
/include/ "omap443x.dtsi" | ||
|
||
/ { | ||
model = "Variscite OMAP4 SOM"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Device Tree Source for OMAP443x SoC | ||
* | ||
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ | ||
* | ||
* This file is licensed under the terms of the GNU General Public License | ||
* version 2. This program is licensed "as is" without any warranty of any | ||
* kind, whether express or implied. | ||
*/ | ||
|
||
/include/ "omap4.dtsi" | ||
|
||
/ { | ||
cpus { | ||
cpu@0 { | ||
/* OMAP443x variants OPP50-OPPNT */ | ||
operating-points = < | ||
/* kHz uV */ | ||
300000 1025000 | ||
600000 1200000 | ||
800000 1313000 | ||
1008000 1375000 | ||
>; | ||
clock-latency = <300000>; /* From legacy driver */ | ||
}; | ||
}; | ||
}; |