hwstub: Add support for rk27xx lradc block
Change-Id: I8fe15ad8207ac7098944bb85d6b66b91b9858e8f
This commit is contained in:
parent
6c106a79c6
commit
4f950e0af9
2 changed files with 20 additions and 0 deletions
8
utils/hwstub/tools/lua/rk27xx.lua
Normal file
8
utils/hwstub/tools/lua/rk27xx.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
--- Chip Identification
|
||||
---
|
||||
|
||||
RK27XX = {}
|
||||
|
||||
hwstub.soc:select("rk27xx")
|
||||
require 'rk27xx/lcdif'
|
12
utils/hwstub/tools/lua/rk27xx/lradc.lua
Normal file
12
utils/hwstub/tools/lua/rk27xx/lradc.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
RK27XX.adc = {}
|
||||
|
||||
function RK27XX.adc.init()
|
||||
-- setup ADC clock divider to reach max 1MHz
|
||||
HW.SCU.DIVCON1.write(bit32.replace(HW.SCU.DIVCON1.read(), 49, 10, 8))
|
||||
end
|
||||
|
||||
function RK27XX.adc.read(channel)
|
||||
HW.ADC.CTRL.write(bit32.bor(bit32.lshift(1,4), bit32.lshift(1,3), bit32.band(channel,3)))
|
||||
-- udelay(20)
|
||||
return bit32.band(HW.ADC.DATA.read(), 0x3ff)
|
||||
end
|
Loading…
Reference in a new issue