Microchip® Advanced Software Framework

main.c File Reference

Application to generate firmware for USB Host Mass Storage Bootloader.

Copyright (c) 2014-2018 Microchip Technology Inc. and its subsidiaries.

#include <asf.h>
#include <string.h>
#include "conf_usb_host.h"
#include "conf_bootloader.h"
#include "main.h"
#include "aesa.h"

Macros

#define MSC_DELAY_SOF_COUNT   100
 

Functions

static void aes_encrypt (uint32_t *decrypted_data, uint32_t size)
 AES Decryption routine. More...
 
static void console_init (void)
 Initializes the console output. More...
 
static void firmware_gen_system_init ()
 Initializes the device for the bootloader. More...
 
static void generate_crc (void)
 Generate the CRC value for the firmware. More...
 
static bool generate_firmware (void)
 Function to generate the final firmware. More...
 
static void init_aes ()
 AES Initialization routine. More...
 
int main (void)
 Main function. More...
 
void main_usb_connection_event (uhc_device_t *dev, bool b_present)
 Notify that a USB device has been connected or disconnected. More...
 
void main_usb_sof_event (void)
 Notify that a SOF has been sent (each 1 ms) More...
 

Variables

COMPILER_WORD_ALIGNED volatile
uint32_t 
aes_output [FLASH_BUFFER_SIZE/4]
 
COMPILER_WORD_ALIGNED volatile
uint8_t 
buffer [FLASH_BUFFER_SIZE]
 
static crccu_dscr_type_t crc_dscr
 
static DIR file_dir
 
static FIL file_object1
 
static FIL file_object2
 
static uint32_t firmware_crc = 0
 
static FATFS fs
 
struct aes_config g_aes_cfg
 
struct aes_dev_inst g_aes_inst
 
static char input_file_name []
 
static volatile bool lun_connected = false
 
static char output_file_name []
 
static volatile uint32_t sof_count = 0
 

#define MSC_DELAY_SOF_COUNT   100

Referenced by main().

static void aes_encrypt ( uint32_t *  input_data,
uint32_t  size 
)
static

AES Decryption routine.

References aes_read_output_data(), aes_read_status(), aes_write_input_data(), and g_aes_inst.

Referenced by generate_firmware().

static void console_init ( void  )
static
static void firmware_gen_system_init ( void  )
static

Initializes the device for the bootloader.

References board_init(), console_init(), cpu_irq_enable, sleepmgr_init(), sysclk_init(), and uhc_start().

Referenced by main().

void main_usb_connection_event ( uhc_device_t dev,
bool  b_present 
)

Notify that a USB device has been connected or disconnected.

Parameters
devPointer on USB device information
b_presenttrue, if the device has been connected

References lun_connected, sof_count, and UNUSED.

void main_usb_sof_event ( void  )

Notify that a SOF has been sent (each 1 ms)

References sof_count.

COMPILER_WORD_ALIGNED volatile uint32_t aes_output[FLASH_BUFFER_SIZE/4]
COMPILER_WORD_ALIGNED volatile uint8_t buffer[FLASH_BUFFER_SIZE]
crccu_dscr_type_t crc_dscr
static
DIR file_dir
static
FIL file_object1
static
FIL file_object2
static
uint32_t firmware_crc = 0
static

Referenced by generate_crc(), and generate_firmware().

FATFS fs
static

Referenced by chk_mounted(), and f_mount().

struct aes_config g_aes_cfg

Referenced by init_aes().

struct aes_dev_inst g_aes_inst

Referenced by aes_encrypt(), and init_aes().

char input_file_name[]
static
Initial value:
= {
}
#define FIRMWARE_IN_FILE_NAME
Firmware file input name.
Definition: conf_bootloader.h:48

Referenced by generate_crc(), generate_firmware(), and main().

volatile bool lun_connected = false
static

Referenced by main(), and main_usb_connection_event().

char output_file_name[]
static
Initial value:
= {
}
#define FIRMWARE_OUT_FILE_NAME
Firmware file output name.
Definition: conf_bootloader.h:50

Referenced by generate_firmware(), and main().

volatile uint32_t sof_count = 0
static