summaryrefslogtreecommitdiff
path: root/util/openocd/lm4x_cmds.tcl
blob: 59c2dbdeb69f59797487e944864e5c1ac1ad8509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 2012 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.
#
# Command automation for Blizzard LM4F chip

# Program internal flash

proc flash_lm4 {path offset} {
	reset halt;
	flash write_image erase $path $offset;
	reset
}

proc flash_lm4_board {board} {
	flash_lm4 ../../build/$board/ec.bin 0
}

proc flash_lm4_ro {board} {
	flash_lm4 ../../build/$board/RO/ec.RO.flat 0
}

proc flash_lm4_rw {board} {
	flash_lm4 ../../build/$board/RW/ec.RW.bin 131072
}

# Boards with CONFIG_FLASH_PSTATE_BANK have pstate following RO
proc unprotect_pstate { } {
	reset halt
	flash erase_sector 0 126 127
	reset
}

# Boot a software using internal RAM only

proc ramboot_lm4 {path} {
	reset halt
	load_image $path 0x20000000 bin
	reg 15 0x20000400
	resume
}

proc ramboot_lm4_board {board} {
	ramboot_lm4 ../../../build/$board/ec.RO.flat
}

proc flash_emerged_board {board} {
	set firmware_image ../../../../../../chroot/build/$board/firmware/ec.bin

	flash_lm4 $firmware_image 0
}