blob: a46fa226050a3998f8330c94e172139d93748e40 [file] [log] [blame]
/*
* Copyright 2017, Data61, CSIRO (ABN 41 687 119 230)
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <platsupport/i2c.h>
#include "../../arch/arm/clock.h"
#include "../../services.h"
#include <assert.h>
#include <string.h>
#include <utils/util.h>
static struct clock master_clk = { CLK_OPS_DEFAULT(MASTER) };
static struct clock sp804_clk = { CLK_OPS_DEFAULT(SP804) };
int
clock_sys_init(ps_io_ops_t* o, clock_sys_t* clock_sys)
{
clock_sys->priv = (void*)0xdeadbeef;
clock_sys->get_clock = &ps_get_clock;
clock_sys->gate_enable = NULL;
return 0;
}
void
clk_print_clock_tree(clock_sys_t* sys)
{
clk_t *clk = clk_get_clock(sys, CLK_MASTER);
clk_print_tree(clk, "");
}
clk_t* ps_clocks[] = {
[CLK_MASTER] = &master_clk,
[CLK_SP804] = &sp804_clk,
};
/* These frequencies are NOT the recommended
* frequencies. They are to be used when we
* need to make assumptions about what u-boot
* has left us with. */
freq_t ps_freq_default[] = {
[CLK_MASTER] = 0 * MHZ,
[CLK_SP804] = 250 * MHZ,
};