memory: pl172: correct MPMC peripheral ID register bits
According to PL172 TRM read of bits [7:6] of MPMCPeriphID3 is undefined, so unmask them. Also the driver supports all currently present revisions of PL172, this allows to alleviate requirements to the revision version matched by the driver. Signed-off-by: Vladimir Zapolskiy <vz@mleia.com> Signed-off-by: Joachim Eastwood <manabian@gmail.com>
This commit is contained in:
parent
6ff33f3902
commit
5b32b1368a
|
@ -278,9 +278,10 @@ static int pl172_remove(struct amba_device *adev)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct amba_id pl172_ids[] = {
|
static const struct amba_id pl172_ids[] = {
|
||||||
|
/* PrimeCell MPMC PL172, EMC found on NXP LPC18xx and LPC43xx */
|
||||||
{
|
{
|
||||||
.id = 0x07341172,
|
.id = 0x07041172,
|
||||||
.mask = 0xffffffff,
|
.mask = 0x3f0fffff,
|
||||||
},
|
},
|
||||||
{ 0, 0 },
|
{ 0, 0 },
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue