Skip to content

Commit

Permalink
thermal: qoriq: Embed per-sensor data into struct qoriq_tmu_data
Browse files Browse the repository at this point in the history
Embed per-sensor data into struct qoriq_tmu_data so we can drop the
code allocating it. This also allows us to get rid of per-sensor back
reference to struct qoriq_tmu_data since now its address can be
calculated using container_of().

Signed-off-by: Andrey Smirnov <[email protected]>
Cc: Chris Healy <[email protected]>
Cc: Lucas Stach <[email protected]>
Cc: Zhang Rui <[email protected]>
Cc: Eduardo Valentin <[email protected]>
Cc: Daniel Lezcano <[email protected]>
Cc: Angus Ainslie (Purism) <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Daniel Lezcano <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
  • Loading branch information
ndreys authored and dlezcano committed Jan 27, 2020
1 parent d6fb056 commit b319da1
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions drivers/thermal/qoriq_thermal.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,10 @@ struct qoriq_tmu_regs_v2 {
u32 ttrcr[4]; /* Temperature Range Control Register */
};

struct qoriq_tmu_data;

/*
* Thermal zone data
*/
struct qoriq_sensor {
struct qoriq_tmu_data *qdata;
int id;
};

Expand All @@ -120,9 +117,14 @@ struct qoriq_tmu_data {
struct qoriq_tmu_regs_v2 __iomem *regs_v2;
struct clk *clk;
bool little_endian;
struct qoriq_sensor *sensor[SITES_MAX];
struct qoriq_sensor sensor[SITES_MAX];
};

static struct qoriq_tmu_data *qoriq_sensor_to_data(struct qoriq_sensor *s)
{
return container_of(s, struct qoriq_tmu_data, sensor[s->id]);
}

static void tmu_write(struct qoriq_tmu_data *p, u32 val, void __iomem *addr)
{
if (p->little_endian)
Expand All @@ -142,7 +144,7 @@ static u32 tmu_read(struct qoriq_tmu_data *p, void __iomem *addr)
static int tmu_get_temp(void *p, int *temp)
{
struct qoriq_sensor *qsensor = p;
struct qoriq_tmu_data *qdata = qsensor->qdata;
struct qoriq_tmu_data *qdata = qoriq_sensor_to_data(qsensor);
u32 val;

val = tmu_read(qdata, &qdata->regs->site[qsensor->id].tritsr);
Expand All @@ -162,19 +164,10 @@ static int qoriq_tmu_register_tmu_zone(struct platform_device *pdev)

for (id = 0; id < SITES_MAX; id++) {
struct thermal_zone_device *tzd;
struct qoriq_sensor *sensor;
struct qoriq_sensor *sensor = &qdata->sensor[id];
int ret;

sensor = devm_kzalloc(&pdev->dev,
sizeof(struct qoriq_sensor),
GFP_KERNEL);
if (!qdata->sensor[id])
return -ENOMEM;

qdata->sensor[id] = sensor;

sensor->id = id;
sensor->qdata = qdata;

tzd = devm_thermal_zone_of_sensor_register(&pdev->dev, id,
sensor,
Expand Down

0 comments on commit b319da1

Please sign in to comment.