mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
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
2 changed files with 4 additions and 1 deletions
|
@ -129,5 +129,8 @@ UCLASS_DRIVER(tpm) = {
|
|||
.id = UCLASS_TPM,
|
||||
.name = "tpm",
|
||||
.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),
|
||||
};
|
||||
|
|
|
@ -164,7 +164,7 @@ static int tpm_tis_lpc_probe(struct udevice *dev)
|
|||
u32 didvid;
|
||||
ulong chip_type = dev_get_driver_data(dev);
|
||||
|
||||
addr = devfdt_get_addr(dev);
|
||||
addr = dev_read_addr(dev);
|
||||
if (addr == FDT_ADDR_T_NONE)
|
||||
return -EINVAL;
|
||||
priv->regs = map_sysmem(addr, 0);
|
||||
|
|
Loading…
Add table
Reference in a new issue