mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-12 19:04:59 +00:00
Allow flashing the RW firmware by sending Vendor-Defined Messages over the USB-PD link. This is not the secure update whose design is still under discussion, it's a simple update with integrity check. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BRANCH=none BUG=chrome-os-partner:28330 TEST=using the following CLs, ./util/flash_pd.py ./build/zinger/ec.RW.flat and see Zinger booting on RW, repeat the operations with different builds of the RW firmware. Change-Id: Icd90eb92f7321ccd66341a50b9dabd73c59c68c1 Reviewed-on: https://chromium-review.googlesource.com/197948 Reviewed-by: Alec Berg <alecaberg@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org> Commit-Queue: Vincent Palatin <vpalatin@chromium.org>
111 lines
2.1 KiB
C
111 lines
2.1 KiB
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
/* tiny substitute of the runtime layer */
|
|
|
|
#include "common.h"
|
|
#include "cpu.h"
|
|
#include "debug.h"
|
|
#include "irq_handler.h"
|
|
#include "registers.h"
|
|
#include "timer.h"
|
|
#include "util.h"
|
|
|
|
volatile uint32_t last_event;
|
|
|
|
timestamp_t get_time(void)
|
|
{
|
|
timestamp_t t;
|
|
|
|
t.le.lo = STM32_TIM32_CNT(2);
|
|
t.le.hi = 0;
|
|
return t;
|
|
}
|
|
|
|
void udelay(unsigned us)
|
|
{
|
|
unsigned t0 = STM32_TIM32_CNT(2);
|
|
while ((STM32_TIM32_CNT(2) - t0) < us)
|
|
;
|
|
}
|
|
|
|
void task_enable_irq(int irq)
|
|
{
|
|
CPU_NVIC_EN(0) = 1 << irq;
|
|
}
|
|
|
|
void task_disable_irq(int irq)
|
|
{
|
|
CPU_NVIC_DIS(0) = 1 << irq;
|
|
}
|
|
|
|
void task_clear_pending_irq(int irq)
|
|
{
|
|
CPU_NVIC_UNPEND(0) = 1 << irq;
|
|
}
|
|
|
|
uint32_t task_set_event(task_id_t tskid, uint32_t event, int wait)
|
|
{
|
|
last_event = event;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void IRQ_HANDLER(STM32_IRQ_TIM2)(void)
|
|
{
|
|
STM32_TIM_DIER(2) = 0; /* disable match interrupt */
|
|
task_clear_pending_irq(STM32_IRQ_TIM2);
|
|
last_event = 1 << 29 /* task event wake */;
|
|
}
|
|
|
|
uint32_t task_wait_event(int timeout_us)
|
|
{
|
|
uint32_t evt;
|
|
|
|
asm volatile("cpsid i");
|
|
/* the event already happened */
|
|
if (last_event || !timeout_us) {
|
|
evt = last_event;
|
|
last_event = 0;
|
|
|
|
asm volatile("cpsie i ; isb");
|
|
return evt;
|
|
}
|
|
|
|
/* set timeout on timer */
|
|
if (timeout_us > 0) {
|
|
STM32_TIM32_CCR1(2) = STM32_TIM32_CNT(2) + timeout_us;
|
|
STM32_TIM_SR(2) = 0; /* clear match flag */
|
|
STM32_TIM_DIER(2) = 2; /* match interrupt */
|
|
}
|
|
|
|
/* sleep until next interrupt */
|
|
asm volatile("wfi");
|
|
|
|
STM32_TIM_DIER(2) = 0; /* disable match interrupt */
|
|
evt = last_event;
|
|
last_event = 0;
|
|
asm volatile("cpsie i ; isb");
|
|
|
|
return evt;
|
|
}
|
|
|
|
void cpu_reset(void)
|
|
{
|
|
/* Disable interrupts */
|
|
asm volatile("cpsid i");
|
|
/* reboot the CPU */
|
|
CPU_NVIC_APINT = 0x05fa0004;
|
|
/* Spin and wait for reboot; should never return */
|
|
while (1)
|
|
;
|
|
}
|
|
|
|
/* --- stubs --- */
|
|
void __hw_timer_enable_clock(int n, int enable)
|
|
{ /* Done in hardware init */ }
|
|
|
|
void usleep(unsigned us)
|
|
{ /* Used only as a workaround */ }
|