/* * This file is part of the Black Magic Debug project. * * Copyright (C) 2015 Richard Meadows * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "stub.h" #define EFM32_MSC ((volatile uint32_t *)0x400c0000) #define EFM32_MSC_WRITECTRL EFM32_MSC[2] #define EFM32_MSC_WRITECMD EFM32_MSC[3] #define EFM32_MSC_ADDRB EFM32_MSC[4] #define EFM32_MSC_WDATA EFM32_MSC[6] #define EFM32_MSC_STATUS EFM32_MSC[7] #define EFM32_MSC_LOCK EFM32_MSC[15] #define EFM32_MSC_LOCK_LOCKKEY 0x1b71 #define EFM32_MSC_WRITECMD_LADDRIM (1<<0) #define EFM32_MSC_WRITECMD_ERASEPAGE (1<<1) #define EFM32_MSC_WRITECMD_WRITEEND (1<<2) #define EFM32_MSC_WRITECMD_WRITEONCE (1<<3) #define EFM32_MSC_WRITECMD_WRITETRIG (1<<4) #define EFM32_MSC_WRITECMD_ERASEABORT (1<<5) #define EFM32_MSC_STATUS_BUSY (1<<0) #define EFM32_MSC_STATUS_LOCKED (1<<1) #define EFM32_MSC_STATUS_INVADDR (1<<2) #define EFM32_MSC_STATUS_WDATAREADY (1<<3) #define EFM32_MSC_STATUS_WORDTIMEOUT (1<<4) void __attribute__((naked)) efm32_flash_write_stub(uint32_t *dest, uint32_t *src, uint32_t size) { uint32_t i; EFM32_MSC_LOCK = EFM32_MSC_LOCK_LOCKKEY; EFM32_MSC_WRITECTRL = 1; for (i = 0; i < size/4; i++) { EFM32_MSC_ADDRB = (uint32_t)&dest[i];; EFM32_MSC_WRITECMD = EFM32_MSC_WRITECMD_LADDRIM; /* Wait for WDATAREADY */ while ((EFM32_MSC_STATUS & EFM32_MSC_STATUS_WDATAREADY) == 0); EFM32_MSC_WDATA = src[i]; EFM32_MSC_WRITECMD = EFM32_MSC_WRITECMD_WRITEONCE; /* Wait for BUSY */ while ((EFM32_MSC_STATUS & EFM32_MSC_STATUS_BUSY)); } stub_exit(0); }