We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a999ef4 commit db7d2d5Copy full SHA for db7d2d5
1 file changed
drivers/i2c/busses/i2c-at91.c
@@ -911,6 +911,14 @@ static struct at91_twi_pdata sama5d2_config = {
911
.has_hold_field = true,
912
};
913
914
+static struct at91_twi_pdata sam9x60_config = {
915
+ .clk_max_div = 7,
916
+ .clk_offset = 4,
917
+ .has_unre_flag = true,
918
+ .has_alt_cmd = true,
919
+ .has_hold_field = true,
920
+};
921
+
922
static const struct of_device_id atmel_twi_dt_ids[] = {
923
{
924
.compatible = "atmel,at91rm9200-i2c",
@@ -936,6 +944,9 @@ static const struct of_device_id atmel_twi_dt_ids[] = {
936
944
}, {
937
945
.compatible = "atmel,sama5d2-i2c",
938
946
.data = &sama5d2_config,
947
+ }, {
948
+ .compatible = "microchip,sam9x60-i2c",
949
+ .data = &sam9x60_config,
939
950
940
951
/* sentinel */
941
952
}
0 commit comments