mirror of
https://github.com/sandeepmistry/rtl8710-openocd.git
synced 2024-12-04 12:10:28 +00:00
added readme
This commit is contained in:
parent
e0d07fd491
commit
c2812eb987
3 changed files with 38 additions and 42 deletions
10
README.md
Normal file
10
README.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# RTL-8710 openocd support
|
||||
OpenOCD support for RTL8710 and integrated flash.
|
||||
## pins:
|
||||
SWDIO: GE3
|
||||
SWCLK: GE4
|
||||
## building:
|
||||
make
|
||||
## testing:
|
||||
make test
|
||||
|
35
rtl8710.ocd
35
rtl8710.ocd
|
@ -202,10 +202,11 @@ proc rtl8710_flasher_verify_block {offset len} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_read_id {} {
|
||||
proc rtl8710_flash_read_id {} {
|
||||
global rtl8710_flasher_buffer
|
||||
global rtl8710_flasher_capacity
|
||||
global rtl8710_flasher_command_read_id
|
||||
rtl8710_flasher_init
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x04}] $rtl8710_flasher_command_read_id
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x08}] 0x00000000
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x00}] 0x00000001
|
||||
|
@ -217,18 +218,20 @@ proc rtl8710_flasher_read_id {} {
|
|||
echo "manufacturer ID: $manufacturer_id, memory type: $memory_type, memory capacity: $memory_capacity byte(s)"
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_mass_erase {} {
|
||||
proc rtl8710_flash_mass_erase {} {
|
||||
global rtl8710_flasher_buffer
|
||||
global rtl8710_flasher_command_mass_erase
|
||||
rtl8710_flasher_init
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x04}] $rtl8710_flasher_command_mass_erase
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x08}] 0x00000000
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x00}] 0x00000001
|
||||
rtl8710_flasher_wait
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_sector_erase {offset} {
|
||||
proc rtl8710_flash_sector_erase {offset} {
|
||||
global rtl8710_flasher_buffer
|
||||
global rtl8710_flasher_command_sector_erase
|
||||
rtl8710_flasher_init
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x04}] $rtl8710_flasher_command_sector_erase
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x08}] 0x00000000
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x10}] $offset
|
||||
|
@ -236,8 +239,9 @@ proc rtl8710_flasher_sector_erase {offset} {
|
|||
rtl8710_flasher_wait
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_read {local_filename loc size} {
|
||||
proc rtl8710_flash_read {local_filename loc size} {
|
||||
global rtl8710_flasher_buffer_size
|
||||
rtl8710_flasher_init
|
||||
for {set offset 0} {$offset < $size} {set offset [expr {$offset + $rtl8710_flasher_buffer_size}]} {
|
||||
set len [expr {$size - $offset}]
|
||||
if {[expr {$len > $rtl8710_flasher_buffer_size}]} {
|
||||
|
@ -250,12 +254,13 @@ proc rtl8710_flasher_read {local_filename loc size} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_write {local_filename loc} {
|
||||
proc rtl8710_flash_write {local_filename loc} {
|
||||
global rtl8710_flasher_buffer_size
|
||||
global rtl8710_flasher_sector_size
|
||||
global rtl8710_flasher_auto_erase
|
||||
global rtl8710_flasher_auto_verify
|
||||
global rtl8710_flasher_auto_erase_sector
|
||||
rtl8710_flasher_init
|
||||
set sector 0
|
||||
set size [file size $local_filename]
|
||||
for {set offset 0} {$offset < $size} {set offset [expr {$offset + $rtl8710_flasher_buffer_size}]} {
|
||||
|
@ -284,8 +289,9 @@ proc rtl8710_flasher_write {local_filename loc} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_verify {local_filename loc} {
|
||||
proc rtl8710_flash_verify {local_filename loc} {
|
||||
global rtl8710_flasher_buffer_size
|
||||
rtl8710_flasher_init
|
||||
set size [file size $local_filename]
|
||||
for {set offset 0} {$offset < $size} {set offset [expr {$offset + $rtl8710_flasher_buffer_size}]} {
|
||||
set len [expr {$size - $offset}]
|
||||
|
@ -299,7 +305,7 @@ proc rtl8710_flasher_verify {local_filename loc} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_auto_erase {on} {
|
||||
proc rtl8710_flash_auto_erase {on} {
|
||||
global rtl8710_flasher_auto_erase
|
||||
if {[expr {$on != 0}]} {
|
||||
set rtl8710_flasher_auto_erase 1
|
||||
|
@ -310,7 +316,7 @@ proc rtl8710_auto_erase {on} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_auto_verify {on} {
|
||||
proc rtl8710_flash_auto_verify {on} {
|
||||
global rtl8710_flasher_auto_verify
|
||||
if {[expr {$on != 0}]} {
|
||||
set rtl8710_flasher_auto_verify 1
|
||||
|
@ -321,19 +327,6 @@ proc rtl8710_auto_verify {on} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_mass_erase {} {
|
||||
echo "mass erase"
|
||||
rtl8710_flasher_mass_erase
|
||||
}
|
||||
|
||||
proc rtl8710_flash_read {local_filename loc size} {
|
||||
rtl8710_flasher_read $local_filename $loc $size
|
||||
}
|
||||
|
||||
proc rtl8710_flash_write {local_filename loc} {
|
||||
rtl8710_flasher_write $local_filename $loc
|
||||
}
|
||||
|
||||
proc rtl8710_reboot {} {
|
||||
mww 0xE000ED0C 0x05FA0007
|
||||
}
|
||||
|
|
|
@ -104,10 +104,11 @@ proc rtl8710_flasher_verify_block {offset len} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_read_id {} {
|
||||
proc rtl8710_flash_read_id {} {
|
||||
global rtl8710_flasher_buffer
|
||||
global rtl8710_flasher_capacity
|
||||
global rtl8710_flasher_command_read_id
|
||||
rtl8710_flasher_init
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x04}] $rtl8710_flasher_command_read_id
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x08}] 0x00000000
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x00}] 0x00000001
|
||||
|
@ -119,18 +120,20 @@ proc rtl8710_flasher_read_id {} {
|
|||
echo "manufacturer ID: $manufacturer_id, memory type: $memory_type, memory capacity: $memory_capacity byte(s)"
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_mass_erase {} {
|
||||
proc rtl8710_flash_mass_erase {} {
|
||||
global rtl8710_flasher_buffer
|
||||
global rtl8710_flasher_command_mass_erase
|
||||
rtl8710_flasher_init
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x04}] $rtl8710_flasher_command_mass_erase
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x08}] 0x00000000
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x00}] 0x00000001
|
||||
rtl8710_flasher_wait
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_sector_erase {offset} {
|
||||
proc rtl8710_flash_sector_erase {offset} {
|
||||
global rtl8710_flasher_buffer
|
||||
global rtl8710_flasher_command_sector_erase
|
||||
rtl8710_flasher_init
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x04}] $rtl8710_flasher_command_sector_erase
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x08}] 0x00000000
|
||||
mww [expr {$rtl8710_flasher_buffer + 0x10}] $offset
|
||||
|
@ -138,8 +141,9 @@ proc rtl8710_flasher_sector_erase {offset} {
|
|||
rtl8710_flasher_wait
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_read {local_filename loc size} {
|
||||
proc rtl8710_flash_read {local_filename loc size} {
|
||||
global rtl8710_flasher_buffer_size
|
||||
rtl8710_flasher_init
|
||||
for {set offset 0} {$offset < $size} {set offset [expr {$offset + $rtl8710_flasher_buffer_size}]} {
|
||||
set len [expr {$size - $offset}]
|
||||
if {[expr {$len > $rtl8710_flasher_buffer_size}]} {
|
||||
|
@ -152,12 +156,13 @@ proc rtl8710_flasher_read {local_filename loc size} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_write {local_filename loc} {
|
||||
proc rtl8710_flash_write {local_filename loc} {
|
||||
global rtl8710_flasher_buffer_size
|
||||
global rtl8710_flasher_sector_size
|
||||
global rtl8710_flasher_auto_erase
|
||||
global rtl8710_flasher_auto_verify
|
||||
global rtl8710_flasher_auto_erase_sector
|
||||
rtl8710_flasher_init
|
||||
set sector 0
|
||||
set size [file size $local_filename]
|
||||
for {set offset 0} {$offset < $size} {set offset [expr {$offset + $rtl8710_flasher_buffer_size}]} {
|
||||
|
@ -186,8 +191,9 @@ proc rtl8710_flasher_write {local_filename loc} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_flasher_verify {local_filename loc} {
|
||||
proc rtl8710_flash_verify {local_filename loc} {
|
||||
global rtl8710_flasher_buffer_size
|
||||
rtl8710_flasher_init
|
||||
set size [file size $local_filename]
|
||||
for {set offset 0} {$offset < $size} {set offset [expr {$offset + $rtl8710_flasher_buffer_size}]} {
|
||||
set len [expr {$size - $offset}]
|
||||
|
@ -201,7 +207,7 @@ proc rtl8710_flasher_verify {local_filename loc} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_auto_erase {on} {
|
||||
proc rtl8710_flash_auto_erase {on} {
|
||||
global rtl8710_flasher_auto_erase
|
||||
if {[expr {$on != 0}]} {
|
||||
set rtl8710_flasher_auto_erase 1
|
||||
|
@ -212,7 +218,7 @@ proc rtl8710_auto_erase {on} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_auto_verify {on} {
|
||||
proc rtl8710_flash_auto_verify {on} {
|
||||
global rtl8710_flasher_auto_verify
|
||||
if {[expr {$on != 0}]} {
|
||||
set rtl8710_flasher_auto_verify 1
|
||||
|
@ -223,19 +229,6 @@ proc rtl8710_auto_verify {on} {
|
|||
}
|
||||
}
|
||||
|
||||
proc rtl8710_mass_erase {} {
|
||||
echo "mass erase"
|
||||
rtl8710_flasher_mass_erase
|
||||
}
|
||||
|
||||
proc rtl8710_flash_read {local_filename loc size} {
|
||||
rtl8710_flasher_read $local_filename $loc $size
|
||||
}
|
||||
|
||||
proc rtl8710_flash_write {local_filename loc} {
|
||||
rtl8710_flasher_write $local_filename $loc
|
||||
}
|
||||
|
||||
proc rtl8710_reboot {} {
|
||||
mww 0xE000ED0C 0x05FA0007
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue