| /* |
| * Copyright (c) 2012-2014 Wind River Systems, Inc. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include <zephyr.h> |
| #include <flash.h> |
| #include <asm_inline.h> |
| |
| #define SYS_LOG_DOMAIN "BOOTLOADER" |
| #define SYS_LOG_LEVEL SYS_LOG_LEVEL_INFO |
| #include <logging/sys_log.h> |
| |
| #if defined(MCUBOOT_TARGET_CONFIG) |
| #include MCUBOOT_TARGET_CONFIG |
| #else |
| #error "Board is currently not supported by bootloader" |
| #endif |
| |
| #include "bootutil/image.h" |
| #include "bootutil/bootutil.h" |
| |
| struct device *boot_flash_device; |
| |
| struct vector_table { |
| uint32_t msp; |
| uint32_t reset; |
| }; |
| |
| void os_heap_init(void); |
| |
| void main(void) |
| { |
| struct boot_rsp rsp; |
| struct vector_table *vt; |
| int rc; |
| |
| SYS_LOG_INF("Starting bootloader"); |
| |
| os_heap_init(); |
| |
| boot_flash_device = device_get_binding(FLASH_DRIVER_NAME); |
| if (!boot_flash_device) { |
| SYS_LOG_ERR("Flash device not found"); |
| while (1) |
| ; |
| } |
| |
| rc = boot_go(&rsp); |
| if (rc != 0) { |
| SYS_LOG_ERR("Unable to find bootable image"); |
| while (1) |
| ; |
| } |
| |
| SYS_LOG_INF("Bootloader chainload address: 0x%x", rsp.br_image_addr); |
| vt = (struct vector_table *)(rsp.br_image_addr + |
| rsp.br_hdr->ih_hdr_size); |
| irq_lock(); |
| _MspSet(vt->msp); |
| |
| SYS_LOG_INF("Jumping to the first image slot"); |
| ((void (*)(void))vt->reset)(); |
| |
| SYS_LOG_ERR("Never should get here"); |
| while (1) |
| ; |
| } |