tpm: Use livetree and allow children
Adjust the TPM drivers to use livetree (only one does not). Also, sometimes TPMs can have child devices if they provide a service to the system (such as storing secure data), so permit that. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
c6ebd011bb
commit
c89d32a7b1
@ -129,5 +129,8 @@ UCLASS_DRIVER(tpm) = {
|
|||||||
.id = UCLASS_TPM,
|
.id = UCLASS_TPM,
|
||||||
.name = "tpm",
|
.name = "tpm",
|
||||||
.flags = DM_UC_FLAG_SEQ_ALIAS,
|
.flags = DM_UC_FLAG_SEQ_ALIAS,
|
||||||
|
#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||||
|
.post_bind = dm_scan_fdt_dev,
|
||||||
|
#endif
|
||||||
.per_device_auto_alloc_size = sizeof(struct tpm_chip_priv),
|
.per_device_auto_alloc_size = sizeof(struct tpm_chip_priv),
|
||||||
};
|
};
|
||||||
|
@ -164,7 +164,7 @@ static int tpm_tis_lpc_probe(struct udevice *dev)
|
|||||||
u32 didvid;
|
u32 didvid;
|
||||||
ulong chip_type = dev_get_driver_data(dev);
|
ulong chip_type = dev_get_driver_data(dev);
|
||||||
|
|
||||||
addr = devfdt_get_addr(dev);
|
addr = dev_read_addr(dev);
|
||||||
if (addr == FDT_ADDR_T_NONE)
|
if (addr == FDT_ADDR_T_NONE)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
priv->regs = map_sysmem(addr, 0);
|
priv->regs = map_sysmem(addr, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user