forked from pfqgauxfb/code-analysis
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
429 B
24 lines
429 B
|
|
struct _boardcnf_ch {
|
|
// cppcheck-suppress misra-config
|
|
uint8_t ddr_density[CS_CNT];
|
|
uint64_t ca_swap;
|
|
};
|
|
|
|
struct _boardcnf {
|
|
|
|
uint16_t dqdm_dly_r;
|
|
// cppcheck-suppress misra-config
|
|
struct _boardcnf_ch ch[DRAM_CH_CNT];
|
|
};
|
|
|
|
static const struct _boardcnf boardcnfs[1] = {
|
|
{
|
|
0x0a0,
|
|
{
|
|
{ {0x02, 0x02}, 0x00345201 },
|
|
{ {0x02, 0x02}, 0x00302154 }
|
|
}
|
|
},
|
|
};
|