forked from len0rd/rockbox
sonynwz: add NW-A55 to database
Change-Id: I59861119c59490f586b3c6ed32a1c41df8b3d365
This commit is contained in:
parent
73f2bd9c46
commit
8a4cb5e619
4 changed files with 8 additions and 2 deletions
|
@ -215,6 +215,7 @@ struct nwz_model_info_t nwz_model[NWZ_MODEL_COUNT] =
|
||||||
{ 0x24000004, "NW-A45" },
|
{ 0x24000004, "NW-A45" },
|
||||||
{ 0x24000005, "NW-A46" },
|
{ 0x24000005, "NW-A46" },
|
||||||
{ 0x24000006, "NW-A47" },
|
{ 0x24000006, "NW-A47" },
|
||||||
|
{ 0x25000004, "NW-A55" },
|
||||||
};
|
};
|
||||||
|
|
||||||
static int nvp_index_06a782[NWZ_NVP_COUNT] =
|
static int nvp_index_06a782[NWZ_NVP_COUNT] =
|
||||||
|
@ -1603,6 +1604,8 @@ static unsigned long models_nw_a30[] = { 0x22000004, 0x22000005, 0x22000006 };
|
||||||
|
|
||||||
static unsigned long models_nw_a40[] = { 0x24000004, 0x24000005, 0x24000006 };
|
static unsigned long models_nw_a40[] = { 0x24000004, 0x24000005, 0x24000006 };
|
||||||
|
|
||||||
|
static unsigned long models_nw_a50[] = { 0x25000004 };
|
||||||
|
|
||||||
static unsigned long models_nwz_a720[] = { 0x3030001, 0x3030002, 0x3030004,
|
static unsigned long models_nwz_a720[] = { 0x3030001, 0x3030002, 0x3030004,
|
||||||
0x3020001, 0x3020002, 0x3020004 };
|
0x3020001, 0x3020002, 0x3020004 };
|
||||||
|
|
||||||
|
@ -1702,6 +1705,7 @@ struct nwz_series_info_t nwz_series[NWZ_SERIES_COUNT] =
|
||||||
{ "nw-a20", "NW-A20 Series", 6, models_nw_a20, &nvp_index_92faee },
|
{ "nw-a20", "NW-A20 Series", 6, models_nw_a20, &nvp_index_92faee },
|
||||||
{ "nw-a30", "NW-A30 Series", 3, models_nw_a30, &nvp_index_398250 },
|
{ "nw-a30", "NW-A30 Series", 3, models_nw_a30, &nvp_index_398250 },
|
||||||
{ "nw-a40", "NW-A40 Series", 3, models_nw_a40, &nvp_index_139d65 },
|
{ "nw-a40", "NW-A40 Series", 3, models_nw_a40, &nvp_index_139d65 },
|
||||||
|
{ "nw-a50", "NW-A50 Series", 1, models_nw_a50, 0 },
|
||||||
{ "nwz-a720", "NWZ-A720 Series", 6, models_nwz_a720, 0 },
|
{ "nwz-a720", "NWZ-A720 Series", 6, models_nwz_a720, 0 },
|
||||||
{ "nwz-a810", "NWZ-A810 Series", 3, models_nwz_a810, &nvp_index_342a18 },
|
{ "nwz-a810", "NWZ-A810 Series", 3, models_nwz_a810, &nvp_index_342a18 },
|
||||||
{ "nwz-a820", "NWZ-A820 Series", 6, models_nwz_a820, 0 },
|
{ "nwz-a820", "NWZ-A820 Series", 6, models_nwz_a820, 0 },
|
||||||
|
|
|
@ -152,9 +152,9 @@ enum nwz_nvp_node_t
|
||||||
/* Invalid NVP index */
|
/* Invalid NVP index */
|
||||||
#define NWZ_NVP_INVALID -1 /* Non-existent entry */
|
#define NWZ_NVP_INVALID -1 /* Non-existent entry */
|
||||||
/* Number of models */
|
/* Number of models */
|
||||||
#define NWZ_MODEL_COUNT 191
|
#define NWZ_MODEL_COUNT 192
|
||||||
/* Number of series */
|
/* Number of series */
|
||||||
#define NWZ_SERIES_COUNT 38
|
#define NWZ_SERIES_COUNT 39
|
||||||
|
|
||||||
/* NVP node info */
|
/* NVP node info */
|
||||||
struct nwz_nvp_info_t
|
struct nwz_nvp_info_t
|
||||||
|
|
|
@ -189,3 +189,4 @@
|
||||||
0x24000004,NW-A45
|
0x24000004,NW-A45
|
||||||
0x24000005,NW-A46
|
0x24000005,NW-A46
|
||||||
0x24000006,NW-A47
|
0x24000006,NW-A47
|
||||||
|
0x25000004,NW-A55
|
||||||
|
|
|
@ -2,6 +2,7 @@ nwz-a10,NWZ-A10 Series,0x1a000001,0x1a000002,0x1a000004,0x1a000005,0x1a000006,0x
|
||||||
nw-a20,NW-A20 Series,0x1d000001,0x1d000002,0x1d000004,0x1d000005,0x1d000006,0x1d000007
|
nw-a20,NW-A20 Series,0x1d000001,0x1d000002,0x1d000004,0x1d000005,0x1d000006,0x1d000007
|
||||||
nw-a30,NW-A30 Series,0x22000004,0x22000005,0x22000006
|
nw-a30,NW-A30 Series,0x22000004,0x22000005,0x22000006
|
||||||
nw-a40,NW-A40 Series,0x24000004,0x24000005,0x24000006
|
nw-a40,NW-A40 Series,0x24000004,0x24000005,0x24000006
|
||||||
|
nw-a50,NW-A50 Series,0x25000004
|
||||||
nwz-a720,NWZ-A720 Series,0x3030001,0x3030002,0x3030004,0x3020001,0x3020002,0x3020004
|
nwz-a720,NWZ-A720 Series,0x3030001,0x3030002,0x3030004,0x3020001,0x3020002,0x3020004
|
||||||
nwz-a810,NWZ-A810 Series,0x10000,0x10001,0x10002
|
nwz-a810,NWZ-A810 Series,0x10000,0x10001,0x10002
|
||||||
nwz-a820,NWZ-A820 Series,0x3010001,0x3010002,0x3010004,0x3000001,0x3000002,0x3000004
|
nwz-a820,NWZ-A820 Series,0x3010001,0x3010002,0x3010004,0x3000001,0x3000002,0x3000004
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue