blob: 08077a1f9e131a21f44c5315e6000a441d68d894 [file] [log] [blame]
Sean Andersona7c81fc2020-06-24 06:41:25 -04001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019-20 Sean Anderson <seanga2@gmail.com>
4 */
5
Tom Rini03de3052024-05-20 13:35:03 -06006#include <config.h>
Sean Andersona7c81fc2020-06-24 06:41:25 -04007#include <clk.h>
8#include <dm.h>
9#include <fdt_support.h>
10#include <asm/io.h>
11
12phys_size_t get_effective_memsize(void)
13{
Tom Riniaa6e94d2022-11-16 13:10:37 -050014 return CFG_SYS_SDRAM_SIZE;
Sean Andersona7c81fc2020-06-24 06:41:25 -040015}
16
Sean Anderson23058052021-04-08 22:13:10 -040017static int sram_init(void)
Sean Andersona7c81fc2020-06-24 06:41:25 -040018{
19 int ret, i;
Sean Anderson2d64e382021-04-08 22:13:11 -040020 const char * const banks[] = { "sram0", "sram1", "aisram" };
Sean Andersona7c81fc2020-06-24 06:41:25 -040021 ofnode memory;
22 struct clk clk;
23
24 /* Enable RAM clocks */
Damien Le Moalfd426b32022-03-01 10:35:39 +000025 memory = ofnode_by_compatible(ofnode_null(), "canaan,k210-sram");
Sean Andersona7c81fc2020-06-24 06:41:25 -040026 if (ofnode_equal(memory, ofnode_null()))
27 return -ENOENT;
28
29 for (i = 0; i < ARRAY_SIZE(banks); i++) {
30 ret = clk_get_by_name_nodev(memory, banks[i], &clk);
31 if (ret)
32 continue;
33
34 ret = clk_enable(&clk);
Sean Andersona7c81fc2020-06-24 06:41:25 -040035 if (ret)
36 return ret;
37 }
38
39 return 0;
40}
Sean Anderson23058052021-04-08 22:13:10 -040041
42int board_early_init_f(void)
43{
44 return sram_init();
45}
46
47int board_init(void)
48{
49 return 0;
50}