Re: [PATCH v3 12/12] reset: Add Tegra BPMP reset driver

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 08/19/2016 11:32 AM, Thierry Reding wrote:
From: Thierry Reding <treding@xxxxxxxxxx>

This driver uses the services provided by the BPMP firmware driver to
implement a reset driver based on the MRQ_RESET request.

diff --git a/drivers/reset/tegra/reset-bpmp.c b/drivers/reset/tegra/reset-bpmp.c

+static struct tegra_bpmp *to_tegra_bpmp(struct reset_controller_dev *rstc)
+{
+	return container_of(rstc, struct tegra_bpmp, rstc);
+}

It seems rather odd for the BPMP to include a struct reset_controller_dev inside it. Rather, I'd expect a separate reset controller struct to be defined here, which contains a pointer to the BPMP. Otherwise, the BPMP structure is going to get all kinds of stuff added to it.

Put another way, I'd expect the BPMP driver to be nothing more than an IPC provider, with all the clock/reset/power-domain/I2C/... logic contained in drivers that simply use that IPC service and nothing more, rather than clock/reset/power-domain/I2C/... being entirely in-bed with the core BPMP driver.

(I haven't reviewed patch 5/12, the BPMP driver yet BTW).

+int tegra_bpmp_init_resets(struct tegra_bpmp *bpmp)
...
+	bpmp->rstc.nr_resets = bpmp->soc->num_resets;

Presumably the BPMP already validates reset IDs. Can we leave all the validation to the BPMP? That way, we wouldn't need the SoC data to include a num_resets field, and hence wouldn't need to update the Linux driver in order to support a FW that supported more resets.
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [ARM Kernel]     [Linux ARM]     [Linux ARM MSM]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux