Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Sunxi Tools
Commits
564e4668
Commit
564e4668
authored
Oct 22, 2012
by
Henrik Nordstrom
Browse files
adb-devprobe.sh: Script to probe a device over adb
parent
22c3e276
Changes
1
Hide whitespace changes
Inline
Side-by-side
adb-devprobe.sh
0 → 100755
View file @
564e4668
#!/bin/bash
adb shell insmod /vendor/modules/sunxi-dbgreg.ko
>
/dev/null
dump_io
()
{
module
=
$1
addr
=
$2
len
=
$3
for
((
i
=
0
;
i < len
;
i+
=
4
))
{
printf
"%x %s "
$((
addr
+
i
))
$module
adb shell
"echo
`
printf
%x
$((
addr
+
i
))
`
> /sys/devices/virtual/misc/sunxi-reg/rw/address; cat /sys/devices/virtual/misc/sunxi-reg/rw/value"
echo
}
}
dump_io SRAM 0xf1c00000 0x100
dump_io DRAM 0xf1c01000 0x400
dump_io CCM 0xf1c20000 0x400
dump_io PIO 0xf1c20800 0x400
dump_pmu
()
{
for
((
i
=
0
;
i <0x100
;
i+
=
2
))
{
adb shell
"echo
`
printf
0x%x
$i
`
> /sys/bus/i2c/devices/0-0034/axp20_reg; cat /sys/bus/i2c/devices/0-0034/axp20_regs"
}
}
dump_pmu
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment