1 // SPDX-License-Identifier: GPL-2.0
3 * arch/sh/kernel/cpu/sh4a/ubc.c
5 * On-chip UBC support for SH-4A CPUs.
7 * Copyright (C) 2009 - 2010 Paul Mundt
9 #include <linux/init.h>
10 #include <linux/err.h>
11 #include <linux/clk.h>
13 #include <asm/hw_breakpoint.h>
15 #define UBC_CBR(idx) (0xff200000 + (0x20 * idx))
16 #define UBC_CRR(idx) (0xff200004 + (0x20 * idx))
17 #define UBC_CAR(idx) (0xff200008 + (0x20 * idx))
18 #define UBC_CAMR(idx) (0xff20000c + (0x20 * idx))
20 #define UBC_CCMFR 0xff200600
21 #define UBC_CBCR 0xff200620
24 #define UBC_CRR_PCB (1 << 1)
25 #define UBC_CRR_BIE (1 << 0)
28 #define UBC_CBR_CE (1 << 0)
30 static struct sh_ubc sh4a_ubc
;
32 static void sh4a_ubc_enable(struct arch_hw_breakpoint
*info
, int idx
)
34 __raw_writel(UBC_CBR_CE
| info
->len
| info
->type
, UBC_CBR(idx
));
35 __raw_writel(info
->address
, UBC_CAR(idx
));
38 static void sh4a_ubc_disable(struct arch_hw_breakpoint
*info
, int idx
)
40 __raw_writel(0, UBC_CBR(idx
));
41 __raw_writel(0, UBC_CAR(idx
));
44 static void sh4a_ubc_enable_all(unsigned long mask
)
48 for (i
= 0; i
< sh4a_ubc
.num_events
; i
++)
50 __raw_writel(__raw_readl(UBC_CBR(i
)) | UBC_CBR_CE
,
54 static void sh4a_ubc_disable_all(void)
58 for (i
= 0; i
< sh4a_ubc
.num_events
; i
++)
59 __raw_writel(__raw_readl(UBC_CBR(i
)) & ~UBC_CBR_CE
,
63 static unsigned long sh4a_ubc_active_mask(void)
65 unsigned long active
= 0;
68 for (i
= 0; i
< sh4a_ubc
.num_events
; i
++)
69 if (__raw_readl(UBC_CBR(i
)) & UBC_CBR_CE
)
75 static unsigned long sh4a_ubc_triggered_mask(void)
77 return __raw_readl(UBC_CCMFR
);
80 static void sh4a_ubc_clear_triggered_mask(unsigned long mask
)
82 __raw_writel(__raw_readl(UBC_CCMFR
) & ~mask
, UBC_CCMFR
);
85 static struct sh_ubc sh4a_ubc
= {
89 .enable
= sh4a_ubc_enable
,
90 .disable
= sh4a_ubc_disable
,
91 .enable_all
= sh4a_ubc_enable_all
,
92 .disable_all
= sh4a_ubc_disable_all
,
93 .active_mask
= sh4a_ubc_active_mask
,
94 .triggered_mask
= sh4a_ubc_triggered_mask
,
95 .clear_triggered_mask
= sh4a_ubc_clear_triggered_mask
,
98 static int __init
sh4a_ubc_init(void)
100 struct clk
*ubc_iclk
= clk_get(NULL
, "ubc0");
104 * The UBC MSTP bit is optional, as not all platforms will have
105 * it. Just ignore it if we can't find it.
107 if (IS_ERR(ubc_iclk
))
110 clk_enable(ubc_iclk
);
112 __raw_writel(0, UBC_CBCR
);
114 for (i
= 0; i
< sh4a_ubc
.num_events
; i
++) {
115 __raw_writel(0, UBC_CAMR(i
));
116 __raw_writel(0, UBC_CBR(i
));
118 __raw_writel(UBC_CRR_BIE
| UBC_CRR_PCB
, UBC_CRR(i
));
120 /* dummy read for write posting */
121 (void)__raw_readl(UBC_CRR(i
));
124 clk_disable(ubc_iclk
);
126 sh4a_ubc
.clk
= ubc_iclk
;
128 return register_sh_ubc(&sh4a_ubc
);
130 arch_initcall(sh4a_ubc_init
);