hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright (C) 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
 * Copyright (C) 2008 Renesas Solutions Corp.
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#include <common.h>
#include <command.h>
#include <asm/processor.h>
#include <asm/io.h>
 
#define STBCR4      0xFFFE040C
#define cmt_clock_enable() do {\
       writeb(readb(STBCR4) & ~0x04, STBCR4);\
   } while (0)
#define scif0_enable() do {\
       writeb(readb(STBCR4) & ~0x80, STBCR4);\
   } while (0)
#define scif3_enable() do {\
       writeb(readb(STBCR4) & ~0x10, STBCR4);\
   } while (0)
 
int checkcpu(void)
{
   puts("CPU: SH2\n");
   return 0;
}
 
int cpu_init(void)
{
   /* SCIF enable */
#if defined(CONFIG_CONS_SCIF3)
   scif3_enable();
#else
   scif0_enable();
#endif
   /* CMT clock enable */
   cmt_clock_enable() ;
   return 0;
}
 
int cleanup_before_linux(void)
{
   disable_interrupts();
   return 0;
}
 
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
   disable_interrupts();
   reset_cpu(0);
   return 0;
}
 
void flush_cache(unsigned long addr, unsigned long size)
{
 
}
 
void icache_enable(void)
{
}
 
void icache_disable(void)
{
}
 
int icache_status(void)
{
   return 0;
}
 
void dcache_enable(void)
{
}
 
void dcache_disable(void)
{
}
 
int dcache_status(void)
{
   return 0;
}