mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
5820590309
The miamiplus contains a speedgrade-2 device, which may run the CPU at 800MHz. Change the PLL setting to 800MHz, and adapt the setpoints in the devicetree. Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
25 lines
440 B
Text
25 lines
440 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Topic Miami Plus board DTS
|
|
*
|
|
* Copyright (C) 2016 Topic Embedded Products
|
|
*/
|
|
#include "zynq-topic-miami.dts"
|
|
|
|
/ {
|
|
model = "Topic Miami+ Zynq Board";
|
|
compatible = "topic,miamiplus", "xlnx,zynq-7000";
|
|
};
|
|
|
|
/* The miamiplus contains a speedgrade-2 device and runs at 800MHz */
|
|
&cpu0 {
|
|
operating-points = <
|
|
/* kHz uV */
|
|
800000 1000000
|
|
400000 1000000
|
|
>;
|
|
};
|
|
|
|
&qspi {
|
|
is-dual = <1>;
|
|
};
|