Merge pull request #23 from rtavs/master

rk3128: add rk3128 support
This commit is contained in:
Open Source Software for Rockchip SoCs(moved to https://github.com/rockchip-linux/) 2018-09-03 09:00:13 +08:00 committed by GitHub
commit 0783503f9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,8 @@ SUBSYSTEM!="usb", GOTO="end_rules"
# RK3036
ATTRS{idVendor}=="2207", ATTRS{idProduct}=="301a", MODE="0666", GROUP="users"
# RK3128
ATTRS{idVendor}=="2207", ATTRS{idProduct}=="310c", MODE="0666", GROUP="users"
# RK3229
ATTRS{idVendor}=="2207", ATTRS{idProduct}=="320b", MODE="0666", GROUP="users"
# RK3288

View File

@ -155,6 +155,11 @@ void CRKScan::SetVidPid(USHORT mscVid, USHORT mscPid)
config.usVid = 0x2207;
m_deviceConfigSet.push_back(config);
config.emDeviceType = RK31_DEVICE;
config.usPid = 0x310C;
config.usVid = 0x2207;
m_deviceConfigSet.push_back(config);
config.emDeviceType = RK32_DEVICE;
config.usPid = 0x320A;
config.usVid = 0x2207;