diff options
| author | Tom Rini <[email protected]> | 2022-01-17 08:36:12 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-01-17 08:36:12 -0500 |
| commit | 6d2ebcd7be3e7f9cc81011ddb97540c81a301701 (patch) | |
| tree | f7e2121a624292cb900d085254dd6336d51ff627 /drivers | |
| parent | 34972e7ea6ef2827b7c18feb03ecfe8c952f162e (diff) | |
| parent | dbf500b55770e58313df9fefa217129da38ea1b6 (diff) | |
Merge tag 'u-boot-at91-2022.04-b' of https://source.denx.de/u-boot/custodians/u-boot-at91
Second set of u-boot-at91 features for the 2022.04 cycle:
This small feature set includes few changes for sama7g5 and sama7g5ek:
turn blue led on at boot, changes required for the Rev4 of the board,
better sync with the Linux DT with regards to the new DT nodes.
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/i2c/at91_i2c.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c index 6b4c0e48045..e743d2a849a 100644 --- a/drivers/i2c/at91_i2c.c +++ b/drivers/i2c/at91_i2c.c @@ -305,6 +305,11 @@ static const struct at91_i2c_pdata sama5d2_config = { .clk_offset = 3, }; +static const struct at91_i2c_pdata sam9x60_config = { + .clk_max_div = 7, + .clk_offset = 3, +}; + static const struct udevice_id at91_i2c_ids[] = { { .compatible = "atmel,at91rm9200-i2c", .data = (long)&at91rm9200_config }, { .compatible = "atmel,at91sam9260-i2c", .data = (long)&at91sam9260_config }, @@ -314,6 +319,7 @@ static const struct udevice_id at91_i2c_ids[] = { { .compatible = "atmel,at91sam9x5-i2c", .data = (long)&at91sam9x5_config }, { .compatible = "atmel,sama5d4-i2c", .data = (long)&sama5d4_config }, { .compatible = "atmel,sama5d2-i2c", .data = (long)&sama5d2_config }, +{ .compatible = "microchip,sam9x60-i2c", .data = (long)&sam9x60_config }, { } }; |
