Message ID | 1397657720-10893-5-git-send-email-ezequiel.garcia@free-electrons.com (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | Zhang Rui |
Headers | show |
Ezequiel, On Wed, Apr 16, 2014 at 11:15:18AM -0300, Ezequiel Garcia wrote: > Now that a generic infrastructure is in place, it's possible to support > the new Armada 375 SoC thermal sensor. This sensor is similar to the one > available in the already supported SoCs, with its specific temperature formula > and specific sensor initialization. > > In addition, we also add support for the Z1 SoC stepping, which needs > an initialization-quirk to work properly. > > Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> > --- > .../devicetree/bindings/thermal/armada-thermal.txt | 7 ++ > drivers/thermal/armada_thermal.c | 83 ++++++++++++++++++++++ > 2 files changed, 90 insertions(+) > > diff --git a/Documentation/devicetree/bindings/thermal/armada-thermal.txt b/Documentation/devicetree/bindings/thermal/armada-thermal.txt > index fff93d5..745d241 100644 > --- a/Documentation/devicetree/bindings/thermal/armada-thermal.txt > +++ b/Documentation/devicetree/bindings/thermal/armada-thermal.txt > @@ -4,8 +4,15 @@ Required properties: > > - compatible: Should be set to one of the following: > marvell,armada370-thermal > + marvell,armada375-thermal > + marvell,armada375-z1-thermal > marvell,armadaxp-thermal > > + Note: As the name suggests, "marvell,armada375-z1-thermal" > + applies for the SoC Z1 stepping only. The operating system > + may auto-detect the SoC stepping and update the compatible > + at runtime. > + > - reg: Device's register space. > Two entries are expected, see the examples below. > The first one is required for the sensor register; > diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c > index 3e4d8ef..a37942b 100644 > --- a/drivers/thermal/armada_thermal.c > +++ b/drivers/thermal/armada_thermal.c > @@ -35,6 +35,15 @@ > #define PMU_TDC0_OTF_CAL_MASK (0x1 << 30) > #define PMU_TDC0_START_CAL_MASK (0x1 << 25) > > +#define A375_Z1_CAL_RESET_LSB 0x8011e214 > +#define A375_Z1_CAL_RESET_MSB 0x30a88019 > +#define A375_Z1_WORKAROUND_BIT BIT(9) > + > +#define TSEN40_UNIT_CONTROL_OFFSET 27 > +#define TSEN40_UNIT_CONTROL_MASK 0x7 > +#define TSEN40_READOUT_INVERT BIT(15) > +#define TSEN40_HW_RESETn BIT(8) > + > struct armada_thermal_data; > > /* Marvell EBU Thermal Sensor Dev Structure */ > @@ -106,6 +115,50 @@ static void armada370_init_sensor(struct armada_thermal_priv *priv) > mdelay(10); > } > > +static void armada375_init_sensor(struct armada_thermal_priv *priv) > +{ > + unsigned long reg; > + > + reg = readl(priv->control + 4); > + reg &= ~(TSEN40_UNIT_CONTROL_MASK << TSEN40_UNIT_CONTROL_OFFSET); > + reg &= ~TSEN40_READOUT_INVERT; > + reg &= ~TSEN40_HW_RESETn; > + > + writel(reg, priv->control + 4); > + mdelay(20); > + > + reg |= TSEN40_HW_RESETn; > + writel(reg, priv->control + 4); > + mdelay(50); > +} > + > +static void armada375_z1_init_sensor(struct armada_thermal_priv *priv) > +{ > + unsigned long reg; > + > + /* > + * On A375 Z1 SoC silicon revision the default (reset) values > + * must be written. > + */ > + writel(A375_Z1_CAL_RESET_LSB, priv->control); > + writel(A375_Z1_CAL_RESET_MSB, priv->control + 0x4); this... > + > + reg = readl(priv->control + 4); > + reg &= ~(TSEN40_UNIT_CONTROL_MASK << TSEN40_UNIT_CONTROL_OFFSET); > + reg &= ~TSEN40_READOUT_INVERT; > + reg &= ~TSEN40_HW_RESETn; > + > + /* This is only needed on A375 Z1 SoC silicon revision */ > + reg |= A375_Z1_WORKAROUND_BIT; and this seem to be the only differences between the two init functions. It also appears to be the only reason for having two data structs below. Is it worth checking for the compatible string in the init function so you only have one init and one data struct? > + > + writel(reg, priv->control + 4); > + mdelay(20); > + > + reg |= TSEN40_HW_RESETn; > + writel(reg, priv->control + 4); > + mdelay(50); > +} > + > static bool armada_is_valid(struct armada_thermal_priv *priv) > { > unsigned long reg = readl_relaxed(priv->sensor); > @@ -163,6 +216,28 @@ static const struct armada_thermal_data armada370_data = { > .coef_div = 13825, > }; > > +static const struct armada_thermal_data armada375_data = { > + .is_valid = armada_is_valid, > + .init_sensor = armada375_init_sensor, > + .is_valid_offset = 10, > + .temp_offset = 0, > + .temp_mask = 0x1ff, > + .coef_b = 3171900000UL, > + .coef_m = 10000000UL, > + .coef_div = 13616, > +}; > + > +static const struct armada_thermal_data armada375_z1_data = { > + .is_valid = armada_is_valid, > + .init_sensor = armada375_z1_init_sensor, > + .is_valid_offset = 10, > + .temp_offset = 0, > + .temp_mask = 0x1ff, > + .coef_b = 3171900000UL, > + .coef_m = 10000000UL, > + .coef_div = 13616, > +}; thx, Jason. > + > static const struct of_device_id armada_thermal_id_table[] = { > { > .compatible = "marvell,armadaxp-thermal", > @@ -173,6 +248,14 @@ static const struct of_device_id armada_thermal_id_table[] = { > .data = &armada370_data, > }, > { > + .compatible = "marvell,armada375-thermal", > + .data = &armada375_data, > + }, > + { > + .compatible = "marvell,armada375-z1-thermal", > + .data = &armada375_z1_data, > + }, > + { > /* sentinel */ > }, > }; > -- > 1.9.1 > -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, Apr 16, 2014 at 11:15:18AM -0300, Ezequiel Garcia wrote: > In addition, we also add support for the Z1 SoC stepping, which needs > an initialization-quirk to work properly. ... > diff --git a/Documentation/devicetree/bindings/thermal/armada-thermal.txt b/Documentation/devicetree/bindings/thermal/armada-thermal.txt > index fff93d5..745d241 100644 > --- a/Documentation/devicetree/bindings/thermal/armada-thermal.txt > +++ b/Documentation/devicetree/bindings/thermal/armada-thermal.txt > @@ -4,8 +4,15 @@ Required properties: > > - compatible: Should be set to one of the following: > marvell,armada370-thermal > + marvell,armada375-thermal > + marvell,armada375-z1-thermal > marvell,armadaxp-thermal > > + Note: As the name suggests, "marvell,armada375-z1-thermal" > + applies for the SoC Z1 stepping only. The operating system > + may auto-detect the SoC stepping and update the compatible > + at runtime. Please also include a statement in here regarding the register quirk for the z1 stepping. thx, Jason. -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Jason, Thanks for taking a look. On Apr 16, Jason Cooper wrote: > On Wed, Apr 16, 2014 at 11:15:18AM -0300, Ezequiel Garcia wrote: > > + /* This is only needed on A375 Z1 SoC silicon revision */ > > + reg |= A375_Z1_WORKAROUND_BIT; > > and this seem to be the only differences between the two init functions. > > It also appears to be the only reason for having two data structs below. > Is it worth checking for the compatible string in the init function so > you only have one init and one data struct? > Yes, thought about it at one point but I guess it seemed to me cleaner this way. I'll squash it if you think keeping two structs is stupid bloat.
On Apr 16, Jason Cooper wrote: > On Wed, Apr 16, 2014 at 11:15:18AM -0300, Ezequiel Garcia wrote: > > In addition, we also add support for the Z1 SoC stepping, which needs > > an initialization-quirk to work properly. > ... > > diff --git a/Documentation/devicetree/bindings/thermal/armada-thermal.txt b/Documentation/devicetree/bindings/thermal/armada-thermal.txt > > index fff93d5..745d241 100644 > > --- a/Documentation/devicetree/bindings/thermal/armada-thermal.txt > > +++ b/Documentation/devicetree/bindings/thermal/armada-thermal.txt > > @@ -4,8 +4,15 @@ Required properties: > > > > - compatible: Should be set to one of the following: > > marvell,armada370-thermal > > + marvell,armada375-thermal > > + marvell,armada375-z1-thermal > > marvell,armadaxp-thermal > > > > + Note: As the name suggests, "marvell,armada375-z1-thermal" > > + applies for the SoC Z1 stepping only. The operating system > > + may auto-detect the SoC stepping and update the compatible > > + at runtime. > > Please also include a statement in here regarding the register quirk for > the z1 stepping. > Sure, no problem.
On Wed, Apr 16, 2014 at 12:49:27PM -0300, Ezequiel Garcia wrote: > On Apr 16, Jason Cooper wrote: > > On Wed, Apr 16, 2014 at 11:15:18AM -0300, Ezequiel Garcia wrote: > > > + /* This is only needed on A375 Z1 SoC silicon revision */ > > > + reg |= A375_Z1_WORKAROUND_BIT; > > > > and this seem to be the only differences between the two init functions. > > > > It also appears to be the only reason for having two data structs below. > > Is it worth checking for the compatible string in the init function so > > you only have one init and one data struct? > > > > Yes, thought about it at one point but I guess it seemed to me cleaner > this way. > > I'll squash it if you think keeping two structs is stupid bloat. Well, it's really up to the thermal maintainer. Either way will work. I personally think it's easier to grok using the compatible string. Unfortunately, you're going to have the either check it twice, or set a variable. thx, Jason. -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/Documentation/devicetree/bindings/thermal/armada-thermal.txt b/Documentation/devicetree/bindings/thermal/armada-thermal.txt index fff93d5..745d241 100644 --- a/Documentation/devicetree/bindings/thermal/armada-thermal.txt +++ b/Documentation/devicetree/bindings/thermal/armada-thermal.txt @@ -4,8 +4,15 @@ Required properties: - compatible: Should be set to one of the following: marvell,armada370-thermal + marvell,armada375-thermal + marvell,armada375-z1-thermal marvell,armadaxp-thermal + Note: As the name suggests, "marvell,armada375-z1-thermal" + applies for the SoC Z1 stepping only. The operating system + may auto-detect the SoC stepping and update the compatible + at runtime. + - reg: Device's register space. Two entries are expected, see the examples below. The first one is required for the sensor register; diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c index 3e4d8ef..a37942b 100644 --- a/drivers/thermal/armada_thermal.c +++ b/drivers/thermal/armada_thermal.c @@ -35,6 +35,15 @@ #define PMU_TDC0_OTF_CAL_MASK (0x1 << 30) #define PMU_TDC0_START_CAL_MASK (0x1 << 25) +#define A375_Z1_CAL_RESET_LSB 0x8011e214 +#define A375_Z1_CAL_RESET_MSB 0x30a88019 +#define A375_Z1_WORKAROUND_BIT BIT(9) + +#define TSEN40_UNIT_CONTROL_OFFSET 27 +#define TSEN40_UNIT_CONTROL_MASK 0x7 +#define TSEN40_READOUT_INVERT BIT(15) +#define TSEN40_HW_RESETn BIT(8) + struct armada_thermal_data; /* Marvell EBU Thermal Sensor Dev Structure */ @@ -106,6 +115,50 @@ static void armada370_init_sensor(struct armada_thermal_priv *priv) mdelay(10); } +static void armada375_init_sensor(struct armada_thermal_priv *priv) +{ + unsigned long reg; + + reg = readl(priv->control + 4); + reg &= ~(TSEN40_UNIT_CONTROL_MASK << TSEN40_UNIT_CONTROL_OFFSET); + reg &= ~TSEN40_READOUT_INVERT; + reg &= ~TSEN40_HW_RESETn; + + writel(reg, priv->control + 4); + mdelay(20); + + reg |= TSEN40_HW_RESETn; + writel(reg, priv->control + 4); + mdelay(50); +} + +static void armada375_z1_init_sensor(struct armada_thermal_priv *priv) +{ + unsigned long reg; + + /* + * On A375 Z1 SoC silicon revision the default (reset) values + * must be written. + */ + writel(A375_Z1_CAL_RESET_LSB, priv->control); + writel(A375_Z1_CAL_RESET_MSB, priv->control + 0x4); + + reg = readl(priv->control + 4); + reg &= ~(TSEN40_UNIT_CONTROL_MASK << TSEN40_UNIT_CONTROL_OFFSET); + reg &= ~TSEN40_READOUT_INVERT; + reg &= ~TSEN40_HW_RESETn; + + /* This is only needed on A375 Z1 SoC silicon revision */ + reg |= A375_Z1_WORKAROUND_BIT; + + writel(reg, priv->control + 4); + mdelay(20); + + reg |= TSEN40_HW_RESETn; + writel(reg, priv->control + 4); + mdelay(50); +} + static bool armada_is_valid(struct armada_thermal_priv *priv) { unsigned long reg = readl_relaxed(priv->sensor); @@ -163,6 +216,28 @@ static const struct armada_thermal_data armada370_data = { .coef_div = 13825, }; +static const struct armada_thermal_data armada375_data = { + .is_valid = armada_is_valid, + .init_sensor = armada375_init_sensor, + .is_valid_offset = 10, + .temp_offset = 0, + .temp_mask = 0x1ff, + .coef_b = 3171900000UL, + .coef_m = 10000000UL, + .coef_div = 13616, +}; + +static const struct armada_thermal_data armada375_z1_data = { + .is_valid = armada_is_valid, + .init_sensor = armada375_z1_init_sensor, + .is_valid_offset = 10, + .temp_offset = 0, + .temp_mask = 0x1ff, + .coef_b = 3171900000UL, + .coef_m = 10000000UL, + .coef_div = 13616, +}; + static const struct of_device_id armada_thermal_id_table[] = { { .compatible = "marvell,armadaxp-thermal", @@ -173,6 +248,14 @@ static const struct of_device_id armada_thermal_id_table[] = { .data = &armada370_data, }, { + .compatible = "marvell,armada375-thermal", + .data = &armada375_data, + }, + { + .compatible = "marvell,armada375-z1-thermal", + .data = &armada375_z1_data, + }, + { /* sentinel */ }, };
Now that a generic infrastructure is in place, it's possible to support the new Armada 375 SoC thermal sensor. This sensor is similar to the one available in the already supported SoCs, with its specific temperature formula and specific sensor initialization. In addition, we also add support for the Z1 SoC stepping, which needs an initialization-quirk to work properly. Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> --- .../devicetree/bindings/thermal/armada-thermal.txt | 7 ++ drivers/thermal/armada_thermal.c | 83 ++++++++++++++++++++++ 2 files changed, 90 insertions(+)