blob: d2e09fece5bcffdb556c02bbd7d91781e869a229 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +05302/*
3 * Copyright (C) 2014-15 Synopsys, Inc. (www.synopsys.com)
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +05304 */
5
6#include <linux/linkage.h>
Eugeniy Paltseve6a72b72019-01-14 18:16:48 +03007#include <asm/cache.h>
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +05308
Eugeniy Paltseve6a72b72019-01-14 18:16:48 +03009/*
10 * The memset implementation below is optimized to use prefetchw and prealloc
11 * instruction in case of CPU with 64B L1 data cache line (L1_CACHE_SHIFT == 6)
12 * If you want to implement optimized memset for other possible L1 data cache
13 * line lengths (32B and 128B) you should rewrite code carefully checking
14 * we don't call any prefetchw/prealloc instruction for L1 cache lines which
15 * don't belongs to memset area.
16 */
17
18#if L1_CACHE_SHIFT == 6
19
20.macro PREALLOC_INSTR reg, off
21 prealloc [\reg, \off]
22.endm
23
24.macro PREFETCHW_INSTR reg, off
25 prefetchw [\reg, \off]
26.endm
27
28#else
29
Eugeniy Paltsev55c0c4c2019-04-08 16:04:38 +030030.macro PREALLOC_INSTR reg, off
Eugeniy Paltseve6a72b72019-01-14 18:16:48 +030031.endm
32
Eugeniy Paltsev55c0c4c2019-04-08 16:04:38 +030033.macro PREFETCHW_INSTR reg, off
Eugeniy Paltseve6a72b72019-01-14 18:16:48 +030034.endm
35
36#endif
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +053037
Vineet Gupta86effd02016-09-19 16:42:25 -070038ENTRY_CFI(memset)
Eugeniy Paltseve6a72b72019-01-14 18:16:48 +030039 PREFETCHW_INSTR r0, 0 ; Prefetch the first write location
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +053040 mov.f 0, r2
41;;; if size is zero
42 jz.d [blink]
43 mov r3, r0 ; don't clobber ret val
44
45;;; if length < 8
46 brls.d.nt r2, 8, .Lsmallchunk
47 mov.f lp_count,r2
48
49 and.f r4, r0, 0x03
50 rsub lp_count, r4, 4
51 lpnz @.Laligndestination
52 ;; LOOP BEGIN
53 stb.ab r1, [r3,1]
54 sub r2, r2, 1
55.Laligndestination:
56
57;;; Destination is aligned
58 and r1, r1, 0xFF
59 asl r4, r1, 8
60 or r4, r4, r1
61 asl r5, r4, 16
62 or r5, r5, r4
63 mov r4, r5
64
65 sub3 lp_count, r2, 8
66 cmp r2, 64
67 bmsk.hi r2, r2, 5
68 mov.ls lp_count, 0
69 add3.hi r2, r2, 8
70
71;;; Convert len to Dwords, unfold x8
72 lsr.f lp_count, lp_count, 6
Vineet Gupta262137b2015-07-20 12:05:03 +030073
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +053074 lpnz @.Lset64bytes
75 ;; LOOP START
Eugeniy Paltseve6a72b72019-01-14 18:16:48 +030076 PREALLOC_INSTR r3, 64 ; alloc next line w/o fetching
77
Vineet Gupta262137b2015-07-20 12:05:03 +030078#ifdef CONFIG_ARC_HAS_LL64
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +053079 std.ab r4, [r3, 8]
80 std.ab r4, [r3, 8]
81 std.ab r4, [r3, 8]
82 std.ab r4, [r3, 8]
83 std.ab r4, [r3, 8]
84 std.ab r4, [r3, 8]
85 std.ab r4, [r3, 8]
86 std.ab r4, [r3, 8]
Vineet Gupta262137b2015-07-20 12:05:03 +030087#else
88 st.ab r4, [r3, 4]
89 st.ab r4, [r3, 4]
90 st.ab r4, [r3, 4]
91 st.ab r4, [r3, 4]
92 st.ab r4, [r3, 4]
93 st.ab r4, [r3, 4]
94 st.ab r4, [r3, 4]
95 st.ab r4, [r3, 4]
96 st.ab r4, [r3, 4]
97 st.ab r4, [r3, 4]
98 st.ab r4, [r3, 4]
99 st.ab r4, [r3, 4]
100 st.ab r4, [r3, 4]
101 st.ab r4, [r3, 4]
102 st.ab r4, [r3, 4]
103 st.ab r4, [r3, 4]
104#endif
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +0530105.Lset64bytes:
106
107 lsr.f lp_count, r2, 5 ;Last remaining max 124 bytes
108 lpnz .Lset32bytes
109 ;; LOOP START
Vineet Gupta262137b2015-07-20 12:05:03 +0300110#ifdef CONFIG_ARC_HAS_LL64
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +0530111 std.ab r4, [r3, 8]
112 std.ab r4, [r3, 8]
113 std.ab r4, [r3, 8]
114 std.ab r4, [r3, 8]
Vineet Gupta262137b2015-07-20 12:05:03 +0300115#else
116 st.ab r4, [r3, 4]
117 st.ab r4, [r3, 4]
118 st.ab r4, [r3, 4]
119 st.ab r4, [r3, 4]
120 st.ab r4, [r3, 4]
121 st.ab r4, [r3, 4]
122 st.ab r4, [r3, 4]
123 st.ab r4, [r3, 4]
124#endif
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +0530125.Lset32bytes:
126
127 and.f lp_count, r2, 0x1F ;Last remaining 31 bytes
128.Lsmallchunk:
129 lpnz .Lcopy3bytes
130 ;; LOOP START
131 stb.ab r1, [r3, 1]
132.Lcopy3bytes:
133
134 j [blink]
135
Vineet Gupta86effd02016-09-19 16:42:25 -0700136END_CFI(memset)
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +0530137
Vineet Gupta86effd02016-09-19 16:42:25 -0700138ENTRY_CFI(memzero)
Claudiu Zissulescu1f7e3dc2014-11-21 13:39:25 +0530139 ; adjust bzero args to memset args
140 mov r2, r1
141 b.d memset ;tail call so need to tinker with blink
142 mov r1, 0
Vineet Gupta86effd02016-09-19 16:42:25 -0700143END_CFI(memzero)