mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
enable TS for SX8 Basic
This commit is contained in:
parent
2886f9daef
commit
5a536040b5
@ -48,7 +48,7 @@ static int mci_reset(struct mci *state)
|
|||||||
}
|
}
|
||||||
if ((status & MCI_CONTROL_READY) == 0 )
|
if ((status & MCI_CONTROL_READY) == 0 )
|
||||||
return -1;
|
return -1;
|
||||||
if (link->ids.device == 0x0009)
|
if (link->ids.device == 0x0009 || link->ids.device == 0x000a)
|
||||||
ddblwritel(link, SX8_TSCONFIG_MODE_NORMAL, SX8_TSCONFIG);
|
ddblwritel(link, SX8_TSCONFIG_MODE_NORMAL, SX8_TSCONFIG);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -57,7 +57,7 @@ int ddb_mci_config(struct mci *state, u32 config)
|
|||||||
{
|
{
|
||||||
struct ddb_link *link = state->base->link;
|
struct ddb_link *link = state->base->link;
|
||||||
|
|
||||||
if (link->ids.device != 0x0009)
|
if (link->ids.device != 0x0009 && link->ids.device != 0x000a)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
ddblwritel(link, config, SX8_TSCONFIG);
|
ddblwritel(link, config, SX8_TSCONFIG);
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user