2 * Copyright (c) 2005 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Johannes Hofmann <Hoannes.Hofmann.gmx.de> and
6 * Joerg Sonnenberger <joerg@bec.de>.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of The DragonFly Project nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific, prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * $DragonFly: src/sys/kern/kern_firmware.c,v 1.9 2008/01/10 12:45:10 sephe Exp $
36 #include <sys/param.h>
37 #include <sys/fcntl.h>
39 #include <sys/firmware.h>
40 #include <sys/kernel.h>
41 #include <sys/malloc.h>
43 #include <sys/systm.h>
44 #include <machine/limits.h>
46 static TAILQ_HEAD(, fw_image
) images
;
48 static struct fw_image
*firmware_image_load_file(const char *, bus_dma_tag_t
);
49 static struct fw_image
*firmware_prepare_image(const char *, size_t,
51 static void firmware_destroy_image(struct fw_image
*);
54 firmware_image_load(const char *image_name
, bus_dma_tag_t ptag
)
58 TAILQ_FOREACH(img
, &images
, fw_link
) {
59 if (strcmp(img
->fw_name
, image_name
) == 0) {
65 if ((img
= firmware_image_load_file(image_name
, ptag
)) != NULL
)
72 firmware_image_unload(struct fw_image
*img
)
74 KKASSERT(img
->fw_refcnt
> 0);
75 if (--img
->fw_refcnt
> 0)
78 TAILQ_REMOVE(&images
, img
, fw_link
);
79 firmware_destroy_image(img
);
83 firmware_destroy_image(struct fw_image
*img
)
85 if (img
->fw_dma_tag
!= NULL
) {
86 bus_dmamap_unload(img
->fw_dma_tag
, img
->fw_dma_map
);
87 bus_dmamem_free(img
->fw_dma_tag
, img
->fw_image
, img
->fw_dma_map
);
88 bus_dma_tag_destroy(img
->fw_dma_tag
);
90 kfree(img
->fw_image
, M_DEVBUF
);
92 kfree(__DECONST(char *, img
->fw_name
), M_DEVBUF
);
97 firmware_dma_map(void *arg
, bus_dma_segment_t
*segs
, int nseg
, int error
)
107 static struct fw_image
*
108 firmware_prepare_image(const char *imgname
, size_t imglen
, bus_dma_tag_t ptag
)
110 struct fw_image
*img
;
113 img
= kmalloc(sizeof(*img
), M_DEVBUF
, M_WAITOK
| M_ZERO
);
114 img
->fw_name
= kstrdup(imgname
, M_DEVBUF
); /* XXX necessary? */
116 img
->fw_imglen
= imglen
;
119 /* busdma(9) is not required */
120 img
->fw_image
= kmalloc(img
->fw_imglen
, M_DEVBUF
, M_WAITOK
);
124 error
= bus_dma_tag_create(ptag
, 1, 0,
125 BUS_SPACE_MAXADDR_32BIT
, BUS_SPACE_MAXADDR
, NULL
, NULL
,
126 img
->fw_imglen
, 1, BUS_SPACE_MAXSIZE_32BIT
, BUS_DMA_ALLOCNOW
,
129 goto fail_tag_create
;
131 error
= bus_dmamem_alloc(img
->fw_dma_tag
, (void **)&img
->fw_image
,
132 BUS_DMA_WAITOK
, &img
->fw_dma_map
);
136 error
= bus_dmamap_load(img
->fw_dma_tag
, img
->fw_dma_map
,
137 img
->fw_image
, img
->fw_imglen
,
138 firmware_dma_map
, &img
->fw_dma_addr
, 0);
145 bus_dmamem_free(img
->fw_dma_tag
, img
->fw_image
, img
->fw_dma_map
);
147 bus_dma_tag_destroy(img
->fw_dma_tag
);
149 kfree(__DECONST(char *, img
->fw_name
), M_DEVBUF
);
150 kfree(img
, M_DEVBUF
);
154 static char firmware_root
[MAXPATHLEN
] = "/etc/firmware/";
156 static struct fw_image
*
157 firmware_image_load_file(const char *image_name
, bus_dma_tag_t ptag
)
161 struct fw_image
*img
;
166 fw_path
= kmalloc(MAXPATHLEN
, M_TEMP
, M_WAITOK
);
167 ksnprintf(fw_path
, MAXPATHLEN
, "%s/%s", firmware_root
, image_name
);
171 error
= fp_open(fw_path
, O_RDONLY
|O_NOFOLLOW
, 0600, &fp
);
175 if (fp_stat(fp
, &ub
) != 0) {
177 kprintf("fp_stat on firmware image %s failed: %d\n",
181 if (ub
.st_size
> SIZE_T_MAX
) {
182 kprintf("firmware image %s is too large\n", fw_path
);
187 img
= firmware_prepare_image(image_name
, (size_t)ub
.st_size
, ptag
);
191 error
= fp_read(fp
, img
->fw_image
, img
->fw_imglen
, &nread
,
193 if (error
!= 0 || nread
!= img
->fw_imglen
) {
194 kprintf("firmware image could not be read: %d\n", error
);
198 TAILQ_INSERT_HEAD(&images
, img
, fw_link
);
200 kfree(fw_path
, M_TEMP
);
204 firmware_destroy_image(img
);
208 kfree(fw_path
, M_TEMP
);