mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-01 04:53:09 -04:00
drm/amd/pm: Extend the I2C quirk table
Extend the I2C quirk table for SMU access controlled I2C adapters. Let the kernel I2C layer check that the messages all have the same address, and that their combined size doesn't exceed the maximum size of a SMU software I2C request. Suggested-by: Jean Delvare <jdelvare@suse.de> Cc: Jean Delvare <jdelvare@suse.de> Cc: Alexander Deucher <Alexander.Deucher@amd.com> Cc: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com> Cc: Lijo Lazar <Lijo.Lazar@amd.com> Cc: Stanley Yang <Stanley.Yang@amd.com> Cc: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Luben Tuikov <luben.tuikov@amd.com> Acked-by: Alexander Deucher <Alexander.Deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
16ef797737
commit
1673662761
@@ -2036,8 +2036,11 @@ static const struct i2c_algorithm arcturus_i2c_algo = {
|
||||
|
||||
|
||||
static const struct i2c_adapter_quirks arcturus_i2c_control_quirks = {
|
||||
.max_read_len = MAX_SW_I2C_COMMANDS,
|
||||
.flags = I2C_AQ_COMB | I2C_AQ_COMB_SAME_ADDR,
|
||||
.max_read_len = MAX_SW_I2C_COMMANDS,
|
||||
.max_write_len = MAX_SW_I2C_COMMANDS,
|
||||
.max_comb_1st_msg_len = 2,
|
||||
.max_comb_2nd_msg_len = MAX_SW_I2C_COMMANDS - 2,
|
||||
};
|
||||
|
||||
static int arcturus_i2c_control_init(struct smu_context *smu, struct i2c_adapter *control)
|
||||
|
||||
@@ -2834,8 +2834,11 @@ static const struct i2c_algorithm navi10_i2c_algo = {
|
||||
};
|
||||
|
||||
static const struct i2c_adapter_quirks navi10_i2c_control_quirks = {
|
||||
.max_read_len = MAX_SW_I2C_COMMANDS,
|
||||
.flags = I2C_AQ_COMB | I2C_AQ_COMB_SAME_ADDR,
|
||||
.max_read_len = MAX_SW_I2C_COMMANDS,
|
||||
.max_write_len = MAX_SW_I2C_COMMANDS,
|
||||
.max_comb_1st_msg_len = 2,
|
||||
.max_comb_2nd_msg_len = MAX_SW_I2C_COMMANDS - 2,
|
||||
};
|
||||
|
||||
static int navi10_i2c_control_init(struct smu_context *smu, struct i2c_adapter *control)
|
||||
|
||||
@@ -3541,8 +3541,11 @@ static const struct i2c_algorithm sienna_cichlid_i2c_algo = {
|
||||
};
|
||||
|
||||
static const struct i2c_adapter_quirks sienna_cichlid_i2c_control_quirks = {
|
||||
.max_read_len = MAX_SW_I2C_COMMANDS,
|
||||
.flags = I2C_AQ_COMB | I2C_AQ_COMB_SAME_ADDR,
|
||||
.max_read_len = MAX_SW_I2C_COMMANDS,
|
||||
.max_write_len = MAX_SW_I2C_COMMANDS,
|
||||
.max_comb_1st_msg_len = 2,
|
||||
.max_comb_2nd_msg_len = MAX_SW_I2C_COMMANDS - 2,
|
||||
};
|
||||
|
||||
static int sienna_cichlid_i2c_control_init(struct smu_context *smu, struct i2c_adapter *control)
|
||||
|
||||
Reference in New Issue
Block a user