blob: 34eb7bd68320b53c2d45588d0829181029745601 [file] [log] [blame]
wdenk5c952cf2004-10-10 21:27:30 +00001/*
2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-10-10 21:27:30 +00006 */
7
8#include <common.h>
Thomas Choubcae80e2015-10-21 21:34:57 +08009#include <cpu.h>
10#include <dm.h>
11#include <errno.h>
Joachim Foersterf956ad92011-10-20 10:28:10 +020012#include <asm/cache.h>
wdenk5c952cf2004-10-10 21:27:30 +000013
Thomas Chou5ff10aa2014-08-22 11:36:47 +080014DECLARE_GLOBAL_DATA_PTR;
15
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020016#if defined (CONFIG_SYS_NIOS_SYSID_BASE)
wdenk0c1c117c2005-03-30 23:28:18 +000017extern void display_sysid (void);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020018#endif /* CONFIG_SYS_NIOS_SYSID_BASE */
wdenk5c952cf2004-10-10 21:27:30 +000019
Thomas Chou5ff10aa2014-08-22 11:36:47 +080020#ifdef CONFIG_DISPLAY_CPUINFO
21int print_cpuinfo(void)
wdenk5c952cf2004-10-10 21:27:30 +000022{
23 printf ("CPU : Nios-II\n");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020024#if !defined(CONFIG_SYS_NIOS_SYSID_BASE)
wdenk5c952cf2004-10-10 21:27:30 +000025 printf ("SYSID : <unknown>\n");
26#else
wdenk0c1c117c2005-03-30 23:28:18 +000027 display_sysid ();
wdenk5c952cf2004-10-10 21:27:30 +000028#endif
29 return (0);
30}
Thomas Chou5ff10aa2014-08-22 11:36:47 +080031#endif /* CONFIG_DISPLAY_CPUINFO */
wdenk5c952cf2004-10-10 21:27:30 +000032
Mike Frysinger882b7d72010-10-20 03:41:17 -040033int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk5c952cf2004-10-10 21:27:30 +000034{
Thomas Chou7a6a7d12010-08-16 10:49:44 +080035 disable_interrupts();
36 /* indirect call to go beyond 256MB limitation of toolchain */
37 nios2_callr(CONFIG_SYS_RESET_ADDR);
38 return 0;
wdenk5c952cf2004-10-10 21:27:30 +000039}
Joachim Foersterf956ad92011-10-20 10:28:10 +020040
41int dcache_status(void)
42{
43 return 1;
44}
45
46void dcache_enable(void)
47{
48 flush_dcache(CONFIG_SYS_DCACHE_SIZE, CONFIG_SYS_DCACHELINE_SIZE);
49}
50
51void dcache_disable(void)
52{
53 flush_dcache(CONFIG_SYS_DCACHE_SIZE, CONFIG_SYS_DCACHELINE_SIZE);
54}
Thomas Chou5ff10aa2014-08-22 11:36:47 +080055
Thomas Choubcae80e2015-10-21 21:34:57 +080056int arch_cpu_init_dm(void)
Thomas Chou5ff10aa2014-08-22 11:36:47 +080057{
Thomas Choubcae80e2015-10-21 21:34:57 +080058 struct udevice *dev;
59 int ret;
60
61 ret = uclass_first_device(UCLASS_CPU, &dev);
62 if (ret)
63 return ret;
64 if (!dev)
65 return -ENODEV;
66
Thomas Chou5ff10aa2014-08-22 11:36:47 +080067 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
68
69 return 0;
70}
Thomas Choubcae80e2015-10-21 21:34:57 +080071
72static int altera_nios2_get_desc(struct udevice *dev, char *buf, int size)
73{
74 const char *cpu_name = "Nios-II";
75
76 if (size < strlen(cpu_name))
77 return -ENOSPC;
78 strcpy(buf, cpu_name);
79
80 return 0;
81}
82
83static int altera_nios2_get_info(struct udevice *dev, struct cpu_info *info)
84{
85 info->cpu_freq = gd->cpu_clk;
86 info->features = (1 << CPU_FEAT_L1_CACHE) |
87 (gd->arch.has_mmu ? (1 << CPU_FEAT_MMU) : 0);
88
89 return 0;
90}
91
92static int altera_nios2_get_count(struct udevice *dev)
93{
94 return 1;
95}
96
97static int altera_nios2_probe(struct udevice *dev)
98{
99 const void *blob = gd->fdt_blob;
100 int node = dev->of_offset;
101
102 gd->cpu_clk = fdtdec_get_int(blob, node,
103 "clock-frequency", 0);
104 gd->arch.dcache_line_size = fdtdec_get_int(blob, node,
105 "dcache-line-size", 0);
106 gd->arch.icache_line_size = fdtdec_get_int(blob, node,
107 "icache-line-size", 0);
108 gd->arch.dcache_size = fdtdec_get_int(blob, node,
109 "dcache-size", 0);
110 gd->arch.icache_size = fdtdec_get_int(blob, node,
111 "icache-size", 0);
112 gd->arch.reset_addr = fdtdec_get_int(blob, node,
113 "altr,reset-addr", 0);
114 gd->arch.exception_addr = fdtdec_get_int(blob, node,
115 "altr,exception-addr", 0);
116 gd->arch.has_initda = fdtdec_get_int(blob, node,
117 "altr,has-initda", 0);
118 gd->arch.has_mmu = fdtdec_get_int(blob, node,
119 "altr,has-mmu", 0);
120 gd->arch.io_region_base = gd->arch.has_mmu ? 0xe0000000 : 0x8000000;
121
122 return 0;
123}
124
125static const struct cpu_ops altera_nios2_ops = {
126 .get_desc = altera_nios2_get_desc,
127 .get_info = altera_nios2_get_info,
128 .get_count = altera_nios2_get_count,
129};
130
131static const struct udevice_id altera_nios2_ids[] = {
132 { .compatible = "altr,nios2-1.0" },
133 { .compatible = "altr,nios2-1.1" },
134 { }
135};
136
137U_BOOT_DRIVER(altera_nios2) = {
138 .name = "altera_nios2",
139 .id = UCLASS_CPU,
140 .of_match = altera_nios2_ids,
141 .probe = altera_nios2_probe,
142 .ops = &altera_nios2_ops,
143 .flags = DM_FLAG_PRE_RELOC,
144};