On Mon, Dec 3, 2018 at 4:15 AM Jay Fang <f.fangjian@xxxxxxxxxx> wrote: > > SPI clock frequency of Designware ip for Hisilicon Hip08 is 250M. The > ACPI ID used is "HISI0173". > > Signed-off-by: Jay Fang <f.fangjian@xxxxxxxxxx> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx> in case you want the whole series to go into the SPI tree. Or please let me know if you want me to take this patch. > --- > drivers/acpi/acpi_apd.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/drivers/acpi/acpi_apd.c b/drivers/acpi/acpi_apd.c > index 2664452..ddf598a 100644 > --- a/drivers/acpi/acpi_apd.c > +++ b/drivers/acpi/acpi_apd.c > @@ -166,6 +166,11 @@ static const struct apd_device_desc thunderx2_i2c_desc = { > .setup = acpi_apd_setup, > .fixed_clk_rate = 125000000, > }; > + > +static const struct apd_device_desc hip08_spi_desc = { > + .setup = acpi_apd_setup, > + .fixed_clk_rate = 250000000, > +}; > #endif > > #else > @@ -234,6 +239,7 @@ static const struct acpi_device_id acpi_apd_device_ids[] = { > { "CAV9007", APD_ADDR(thunderx2_i2c_desc) }, > { "HISI02A1", APD_ADDR(hip07_i2c_desc) }, > { "HISI02A2", APD_ADDR(hip08_i2c_desc) }, > + { "HISI0173", APD_ADDR(hip08_spi_desc) }, > #endif > { } > }; > -- > 2.7.4 >