123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- /*
- * Copyright (c) 1997-2015, Actions Semi Co., Inc.
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include <stdint.h>
- #include <stdbool.h>
- #include <string.h>
- #include <assert.h>
- #include <errno.h>
- #include <soc.h>
- #include <zephyr.h>
- #include <soc_anc.h>
- #ifdef LOAD_IMAGE_FROM_FS
- #include <sys/types.h>
- #include <fs/fs_interface.h>
- #include <fs/fat_fs.h>
- #include <fs.h>
- #endif /* LOAD_IMAGE_FROM_FS */
- #include "anc_image.h"
- static int load_scntable(const void *image, unsigned int offset, bool is_code)
- {
- const struct IMG_scnhdr *scnhdr = (const struct IMG_scnhdr *)((uint32_t)image + offset);
- if (scnhdr->size == 0)
- return -ENODATA;
- for (; scnhdr->size > 0; ) {
- uint32_t cpu_addr = anc_to_mcu_address(scnhdr->addr, is_code);
- if (cpu_addr == UINT32_MAX) {
- printk("invalid address 0x%08x\n", scnhdr->addr);
- return -EFAULT;
- }
- printk("load: offset=0x%08x, size=0x%08x, anc_addr=0x%08x, cpu_addr=0x%08x\n",
- (unsigned int)(scnhdr->data - (const uint8_t *)image),
- scnhdr->size, scnhdr->addr, cpu_addr);
- anc_soc_release_mem();
- memcpy((void*)cpu_addr, scnhdr->data, scnhdr->size);
- anc_soc_request_mem();
- scnhdr = (struct IMG_scnhdr*)&scnhdr->data[scnhdr->size];
- }
- return 0;
- }
- #if 0
- int load_anc_image_bank(const void *image, size_t size, unsigned int bank_no)
- {
- const struct IMG_filehdr *filehdr = image;
- if (bank_no >= NUM_BANKS) {
- printk("invalid bank number %u\n", bank_no);
- return -EINVAL;
- }
- assert(size > filehdr->bank_scnptr[bank_no][0]);
- assert(size > filehdr->bank_scnptr[bank_no][1]);
- if (!filehdr->bank_scnptr[bank_no][0] &&
- !filehdr->bank_scnptr[bank_no][1]) {
- printk("bank[%u] empty\n", bank_no);
- return -ENODATA;
- }
- if (filehdr->bank_scnptr[bank_no][0]) {
- if (load_scntable(image, filehdr->bank_scnptr[bank_no][0], true)) {
- printk("failed to load bank[%u] code\n", bank_no);
- return -EINVAL;
- }
- }
- if (filehdr->bank_scnptr[bank_no][1]) {
- if (load_scntable(image, filehdr->bank_scnptr[bank_no][1], false)) {
- printk("failed to load bank[%u] data\n", bank_no);
- return -EINVAL;
- }
- }
- return 0;
- }
- #endif
- int load_anc_image(const void *image, size_t size, uint32_t *entry_point)
- {
- const struct IMG_filehdr *filehdr = image;
- /* FIXME: use sys_get_le32 to handle unaligned 32bit access insead ? */
- if ((uint32_t)image & 0x3) {
- printk("image load address %p should be aligned to 4, "
- "could use __attribute__((__aligned__(x)))\n", image);
- return -EFAULT;
- }
- assert(size > sizeof(*filehdr));
- assert(size > filehdr->code_scnptr);
- assert(size > filehdr->code_scnptr);
- if (filehdr->magic != IMAGE_MAGIC('y', 'q', 'h', 'x')) {
- printk("invalid anc magic 0x%08x\n", filehdr->magic);
- return -EINVAL;
- }
- if (filehdr->code_scnptr) {
- if (load_scntable(image, filehdr->code_scnptr, true)) {
- printk("failed to load code\n");
- return -EINVAL;
- }
- }
- if (filehdr->data_scnptr) {
- if (load_scntable(image, filehdr->data_scnptr, false)) {
- printk("failed to load data\n");
- return -EINVAL;
- }
- }
- if (entry_point)
- *entry_point = filehdr->entry_point;
- return 0;
- }
- #ifdef LOAD_IMAGE_FROM_FS
- static int load_scntable_from_file(fs_file_t *file, long offset, bool is_code)
- {
- if (offset <= 0)
- return 0;
- if (fs_seek(file, offset, FS_SEEK_SET)) {
- printk("seek_file failed\n");
- return -EIO;
- }
- do {
- struct IMG_scnhdr scnhdr;
- ssize_t ssize = fs_read(file, &scnhdr, sizeof(scnhdr));
- if (ssize < sizeof(scnhdr.size)) {
- printk("invalid image\n");
- return -EINVAL;
- }
- if (scnhdr.size == 0)
- break;
- uint32_t cpu_addr = anc_to_mcu_address(scnhdr.addr, is_code);
- if (cpu_addr == UINT32_MAX) {
- printk("invalid address 0x%08x\n", scnhdr.addr);
- return -EFAULT;
- }
- //printk("load: offset=0x%08x, size=0x%08x, anc_addr=0x%08x, cpu_addr=0x%08x",
- // (unsigned int)fs_tell(file), scnhdr.size, scnhdr.addr, cpu_addr);
- ssize = fs_read(file, (void *)cpu_addr, scnhdr.size);
- if (ssize < scnhdr.size)
- return -EIO;
- } while (true);
- return 0;
- }
- int load_anc_image_bank_from_file(void *filp, unsigned int bank_no)
- {
- fs_file_t *file = filp;
- struct IMG_filehdr filehdr;
- ssize_t ssize;
- fs_seek(file, 0, FS_SEEK_SET);
- ssize = fs_read(file, &filehdr, sizeof(filehdr));
- if (ssize < sizeof(filehdr)) {
- printk("invalid image\n");
- return -EINVAL;
- }
- if (!filehdr.bank_scnptr[bank_no][0] && !filehdr.bank_scnptr[bank_no][1]) {
- printk("bank[%u] empty\n", bank_no);
- return -ENODATA;
- }
- if (filehdr.bank_scnptr[bank_no][0]) {
- if (load_scntable_from_file(file, filehdr.bank_scnptr[bank_no][0], true)) {
- printk("failed to load bank[%u] code\n", bank_no);
- return -EINVAL;
- }
- }
- if (filehdr.bank_scnptr[bank_no][1]) {
- if (load_scntable_from_file(file, filehdr.bank_scnptr[bank_no][1], false)) {
- printk("failed to load bank[%u] data\n", bank_no);
- return -EINVAL;
- }
- }
- return 0;
- }
- int load_anc_image_from_file(void *filp, uint32_t *entry_point)
- {
- fs_file_t *file = filp;
- struct IMG_filehdr filehdr;
- ssize_t ssize;
- fs_seek(file, 0, FS_SEEK_SET);
- ssize = fs_read(file, &filehdr, sizeof(filehdr));
- if (ssize < sizeof(filehdr)) {
- printk("invalid image\n");
- return -EINVAL;
- }
- if (memcmp(filehdr.magic, "yqhx", 4)) {
- printk("anc magic error\n");
- return -EINVAL;
- }
- if (filehdr.code_scnptr) {
- if (load_scntable_from_file(file, filehdr.code_scnptr, true)) {
- printk("failed to load code\n");
- return -EINVAL;
- }
- }
- if (filehdr.data_scnptr) {
- if (load_scntable_from_file(file, filehdr.data_scnptr, false)) {
- printk("failed to load data\n");
- return -EINVAL;
- }
- }
- if (entry_point)
- *entry_point = filehdr.entry_point;
- return 0;
- }
- #endif /* LOAD_IMAGE_FROM_FS */
|