2 * arch/arm/mach-netx/xc.c
4 * Copyright (c) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/init.h>
21 #include <linux/device.h>
22 #include <linux/firmware.h>
23 #include <linux/mutex.h>
24 #include <linux/slab.h>
26 #include <linux/export.h>
28 #include <mach/hardware.h>
29 #include <mach/irqs.h>
30 #include <mach/netx-regs.h>
34 static DEFINE_MUTEX(xc_lock);
36 static int xc_in_use = 0;
41 unsigned int patch_ofs;
42 unsigned int patch_entries;
49 unsigned int reserved[5];
50 struct fw_desc fw_desc[3];
51 } __attribute__ ((packed));
53 int xc_stop(struct xc *x)
55 writel(RPU_HOLD_PC, x->xmac_base + NETX_XMAC_RPU_HOLD_PC_OFS);
56 writel(TPU_HOLD_PC, x->xmac_base + NETX_XMAC_TPU_HOLD_PC_OFS);
57 writel(XPU_HOLD_PC, x->xpec_base + NETX_XPEC_XPU_HOLD_PC_OFS);
61 int xc_start(struct xc *x)
63 writel(0, x->xmac_base + NETX_XMAC_RPU_HOLD_PC_OFS);
64 writel(0, x->xmac_base + NETX_XMAC_TPU_HOLD_PC_OFS);
65 writel(0, x->xpec_base + NETX_XPEC_XPU_HOLD_PC_OFS);
69 int xc_running(struct xc *x)
71 return (readl(x->xmac_base + NETX_XMAC_RPU_HOLD_PC_OFS) & RPU_HOLD_PC)
72 || (readl(x->xmac_base + NETX_XMAC_TPU_HOLD_PC_OFS) & TPU_HOLD_PC)
73 || (readl(x->xpec_base + NETX_XPEC_XPU_HOLD_PC_OFS) & XPU_HOLD_PC) ?
77 int xc_reset(struct xc *x)
79 writel(0, x->xpec_base + NETX_XPEC_PC_OFS);
83 static int xc_check_ptr(struct xc *x, unsigned long adr, unsigned int size)
85 if (adr >= NETX_PA_XMAC(x->no) &&
86 adr + size < NETX_PA_XMAC(x->no) + XMAC_MEM_SIZE)
89 if (adr >= NETX_PA_XPEC(x->no) &&
90 adr + size < NETX_PA_XPEC(x->no) + XPEC_MEM_SIZE)
93 dev_err(x->dev, "Illegal pointer in firmware found. aborting\n");
98 static int xc_patch(struct xc *x, const void *patch, int count)
100 unsigned int val, adr;
101 const unsigned int *data = patch;
104 for (i = 0; i < count; i++) {
107 if (xc_check_ptr(x, adr, 4) < 0)
110 writel(val, (void __iomem *)io_p2v(adr));
115 int xc_request_firmware(struct xc *x)
119 const struct firmware *fw;
120 struct fw_header *head;
126 sprintf(name, "xc%d.bin", x->no);
128 ret = request_firmware(&fw, name, x->dev);
131 dev_err(x->dev, "request_firmware failed\n");
135 head = (struct fw_header *)fw->data;
136 if (head->magic != 0x4e657458) {
137 if (head->magic == 0x5874654e) {
139 "firmware magic is 'XteN'. Endianness problems?\n");
141 goto exit_release_firmware;
143 dev_err(x->dev, "unrecognized firmware magic 0x%08x\n",
146 goto exit_release_firmware;
149 x->type = head->type;
150 x->version = head->version;
154 for (i = 0; i < 3; i++) {
155 src = fw->data + head->fw_desc[i].ofs;
156 dst = *(unsigned int *)src;
157 src += sizeof (unsigned int);
158 size = head->fw_desc[i].size - sizeof (unsigned int);
160 if (xc_check_ptr(x, dst, size))
161 goto exit_release_firmware;
163 memcpy((void *)io_p2v(dst), src, size);
165 src = fw->data + head->fw_desc[i].patch_ofs;
166 size = head->fw_desc[i].patch_entries;
167 ret = xc_patch(x, src, size);
169 goto exit_release_firmware;
174 exit_release_firmware:
175 release_firmware(fw);
180 struct xc *request_xc(int xcno, struct device *dev)
184 mutex_lock(&xc_lock);
188 if (xc_in_use & (1 << xcno))
191 x = kmalloc(sizeof (struct xc), GFP_KERNEL);
195 if (!request_mem_region
196 (NETX_PA_XPEC(xcno), XPEC_MEM_SIZE, kobject_name(&dev->kobj)))
199 if (!request_mem_region
200 (NETX_PA_XMAC(xcno), XMAC_MEM_SIZE, kobject_name(&dev->kobj)))
203 if (!request_mem_region
204 (SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE, kobject_name(&dev->kobj)))
207 x->xpec_base = (void * __iomem)io_p2v(NETX_PA_XPEC(xcno));
208 x->xmac_base = (void * __iomem)io_p2v(NETX_PA_XMAC(xcno));
209 x->sram_base = ioremap(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE);
213 x->irq = NETX_IRQ_XPEC(xcno);
218 xc_in_use |= (1 << xcno);
223 release_mem_region(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE);
225 release_mem_region(NETX_PA_XMAC(xcno), XMAC_MEM_SIZE);
227 release_mem_region(NETX_PA_XPEC(xcno), XPEC_MEM_SIZE);
232 mutex_unlock(&xc_lock);
236 void free_xc(struct xc *x)
240 mutex_lock(&xc_lock);
242 iounmap(x->sram_base);
243 release_mem_region(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE);
244 release_mem_region(NETX_PA_XMAC(xcno), XMAC_MEM_SIZE);
245 release_mem_region(NETX_PA_XPEC(xcno), XPEC_MEM_SIZE);
246 xc_in_use &= ~(1 << x->no);
249 mutex_unlock(&xc_lock);
252 EXPORT_SYMBOL(free_xc);
253 EXPORT_SYMBOL(request_xc);
254 EXPORT_SYMBOL(xc_request_firmware);
255 EXPORT_SYMBOL(xc_reset);
256 EXPORT_SYMBOL(xc_running);
257 EXPORT_SYMBOL(xc_start);
258 EXPORT_SYMBOL(xc_stop);