Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
93e29a2
Documentation
arch
alpha
arm
boot
common
configs
kernel
lib
mach-aaec2000
mach-at91
mach-clps711x
mach-clps7500
mach-davinci
mach-ebsa110
mach-ep93xx
mach-footbridge
mach-h720x
mach-imx
mach-integrator
mach-iop13xx
mach-iop32x
mach-iop33x
mach-ixp2000
mach-ixp23xx
mach-ixp4xx
mach-ks8695
mach-l7200
mach-lh7a40x
mach-mx3
mach-netx
Kconfig
Makefile
Makefile.boot
fb.c
fb.h
generic.c
generic.h
nxdb500.c
nxdkn.c
nxeb500hmi.c
pfifo.c
time.c
xc.c
mach-ns9xxx
mach-omap1
mach-omap2
mach-pnx4008
mach-pxa
mach-realview
mach-rpc
mach-s3c2400
mach-s3c2410
mach-s3c2412
mach-s3c2440
mach-s3c2442
mach-s3c2443
mach-sa1100
mach-shark
mach-versatile
mm
nwfpe
oprofile
plat-iop
plat-mxc
plat-omap
plat-s3c
plat-s3c24xx
tools
vfp
Kconfig
Kconfig-nommu
Kconfig.debug
Makefile
avr32
blackfin
cris
frv
h8300
ia64
m32r
m68k
m68knommu
mips
parisc
powerpc
ppc
s390
sh
sh64
sparc
sparc64
um
v850
x86
xtensa
block
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
usr
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
MAINTAINERS
Makefile
README
REPORTING-BUGS
Breadcrumbs
linux
/
arch
/
arm
/
mach-netx
/
xc.c
Copy path
Blame
Blame
Latest commit
History
History
255 lines (205 loc) · 5.74 KB
Breadcrumbs
linux
/
arch
/
arm
/
mach-netx
/
xc.c
Top
File metadata and controls
Code
Blame
255 lines (205 loc) · 5.74 KB
Raw
/* * arch/arm/mach-netx/xc.c * * Copyright (c) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <linux/init.h> #include <linux/device.h> #include <linux/firmware.h> #include <linux/mutex.h> #include <asm/io.h> #include <asm/hardware.h> #include <asm/arch/netx-regs.h> #include <asm/arch/xc.h> static DEFINE_MUTEX(xc_lock); static int xc_in_use = 0; struct fw_desc { unsigned int ofs; unsigned int size; unsigned int patch_ofs; unsigned int patch_entries; }; struct fw_header { unsigned int magic; unsigned int type; unsigned int version; unsigned int reserved[5]; struct fw_desc fw_desc[3]; } __attribute__ ((packed)); int xc_stop(struct xc *x) { writel(RPU_HOLD_PC, x->xmac_base + NETX_XMAC_RPU_HOLD_PC_OFS); writel(TPU_HOLD_PC, x->xmac_base + NETX_XMAC_TPU_HOLD_PC_OFS); writel(XPU_HOLD_PC, x->xpec_base + NETX_XPEC_XPU_HOLD_PC_OFS); return 0; } int xc_start(struct xc *x) { writel(0, x->xmac_base + NETX_XMAC_RPU_HOLD_PC_OFS); writel(0, x->xmac_base + NETX_XMAC_TPU_HOLD_PC_OFS); writel(0, x->xpec_base + NETX_XPEC_XPU_HOLD_PC_OFS); return 0; } int xc_running(struct xc *x) { return (readl(x->xmac_base + NETX_XMAC_RPU_HOLD_PC_OFS) & RPU_HOLD_PC) || (readl(x->xmac_base + NETX_XMAC_TPU_HOLD_PC_OFS) & TPU_HOLD_PC) || (readl(x->xpec_base + NETX_XPEC_XPU_HOLD_PC_OFS) & XPU_HOLD_PC) ? 0 : 1; } int xc_reset(struct xc *x) { writel(0, x->xpec_base + NETX_XPEC_PC_OFS); return 0; } static int xc_check_ptr(struct xc *x, unsigned long adr, unsigned int size) { if (adr >= NETX_PA_XMAC(x->no) && adr + size < NETX_PA_XMAC(x->no) + XMAC_MEM_SIZE) return 0; if (adr >= NETX_PA_XPEC(x->no) && adr + size < NETX_PA_XPEC(x->no) + XPEC_MEM_SIZE) return 0; dev_err(x->dev, "Illegal pointer in firmware found. aborting\n"); return -1; } static int xc_patch(struct xc *x, void *patch, int count) { unsigned int val, adr; unsigned int *data = patch; int i; for (i = 0; i < count; i++) { adr = *data++; val = *data++; if (xc_check_ptr(x, adr, 4) < 0) return -EINVAL; writel(val, (void __iomem *)io_p2v(adr)); } return 0; } int xc_request_firmware(struct xc *x) { int ret; char name[16]; const struct firmware *fw; struct fw_header *head; unsigned int size; int i; void *src; unsigned long dst; sprintf(name, "xc%d.bin", x->no); ret = request_firmware(&fw, name, x->dev); if (ret < 0) { dev_err(x->dev, "request_firmware failed\n"); return ret; } head = (struct fw_header *)fw->data; if (head->magic != 0x4e657458) { if (head->magic == 0x5874654e) { dev_err(x->dev, "firmware magic is 'XteN'. Endianess problems?\n"); ret = -ENODEV; goto exit_release_firmware; } dev_err(x->dev, "unrecognized firmware magic 0x%08x\n", head->magic); ret = -ENODEV; goto exit_release_firmware; } x->type = head->type; x->version = head->version; ret = -EINVAL; for (i = 0; i < 3; i++) { src = fw->data + head->fw_desc[i].ofs; dst = *(unsigned int *)src; src += sizeof (unsigned int); size = head->fw_desc[i].size - sizeof (unsigned int); if (xc_check_ptr(x, dst, size)) goto exit_release_firmware; memcpy((void *)io_p2v(dst), src, size); src = fw->data + head->fw_desc[i].patch_ofs; size = head->fw_desc[i].patch_entries; ret = xc_patch(x, src, size); if (ret < 0) goto exit_release_firmware; } ret = 0; exit_release_firmware: release_firmware(fw); return ret; } struct xc *request_xc(int xcno, struct device *dev) { struct xc *x = NULL; mutex_lock(&xc_lock); if (xcno > 3) goto exit; if (xc_in_use & (1 << xcno)) goto exit; x = kmalloc(sizeof (struct xc), GFP_KERNEL); if (!x) goto exit; if (!request_mem_region (NETX_PA_XPEC(xcno), XPEC_MEM_SIZE, kobject_name(&dev->kobj))) goto exit_free; if (!request_mem_region (NETX_PA_XMAC(xcno), XMAC_MEM_SIZE, kobject_name(&dev->kobj))) goto exit_release_1; if (!request_mem_region (SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE, kobject_name(&dev->kobj))) goto exit_release_2; x->xpec_base = (void * __iomem)io_p2v(NETX_PA_XPEC(xcno)); x->xmac_base = (void * __iomem)io_p2v(NETX_PA_XMAC(xcno)); x->sram_base = ioremap(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE); if (!x->sram_base) goto exit_release_3; x->irq = NETX_IRQ_XPEC(xcno); x->no = xcno; x->dev = dev; xc_in_use |= (1 << xcno); goto exit; exit_release_3: release_mem_region(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE); exit_release_2: release_mem_region(NETX_PA_XMAC(xcno), XMAC_MEM_SIZE); exit_release_1: release_mem_region(NETX_PA_XPEC(xcno), XPEC_MEM_SIZE); exit_free: kfree(x); x = NULL; exit: mutex_unlock(&xc_lock); return x; } void free_xc(struct xc *x) { int xcno = x->no; mutex_lock(&xc_lock); iounmap(x->sram_base); release_mem_region(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE); release_mem_region(NETX_PA_XMAC(xcno), XMAC_MEM_SIZE); release_mem_region(NETX_PA_XPEC(xcno), XPEC_MEM_SIZE); xc_in_use &= ~(1 << x->no); kfree(x); mutex_unlock(&xc_lock); } EXPORT_SYMBOL(free_xc); EXPORT_SYMBOL(request_xc); EXPORT_SYMBOL(xc_request_firmware); EXPORT_SYMBOL(xc_reset); EXPORT_SYMBOL(xc_running); EXPORT_SYMBOL(xc_start); EXPORT_SYMBOL(xc_stop);
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
You can’t perform that action at this time.