On Mon, 03 Mar 2025 23:14:50 -0800 Dan Williams <dan.j.williams@xxxxxxxxx> wrote: > Establish just enough emulated PCI infrastructure to register a sample > TSM (platform security manager) driver and have it discover an IDE + > TEE (link encryption + device-interface security protocol (TDISP)) > capable device. > ... > + > +static int devsec_tsm_connect(struct pci_dev *pdev) > +{ It might be helpful to put some comments here to describe the expected common vendor-agnostic sequences from the perspective of TSM driver in generic style. Guess it would be helpful for vendors to evaluate how to fit there TSM drivers into these paths. E.g. create device context, loops of sending SPDM messages of device connect... The same in devsec_tsm_disconnect(). > + return -ENXIO; > +} > + > +static void devsec_tsm_disconnect(struct pci_dev *pdev) > +{ > +} > + It would be nice to have TDI bind/unbind verbs included. > +static const struct pci_tsm_ops devsec_pci_ops = { > + .probe = devsec_tsm_pci_probe, > + .remove = devsec_tsm_pci_remove, > + .connect = devsec_tsm_connect, > + .disconnect = devsec_tsm_disconnect, > +}; > + > +static void devsec_tsm_remove(void *tsm_core) > +{ > + tsm_unregister(tsm_core); > +} > + > +static int devsec_tsm_probe(struct platform_device *pdev) > +{ > + struct tsm_core_dev *tsm_core; > + > + tsm_core = tsm_register(&pdev->dev, NULL, &devsec_pci_ops); > + if (IS_ERR(tsm_core)) > + return PTR_ERR(tsm_core); > + > + return devm_add_action_or_reset(&pdev->dev, > devsec_tsm_remove, > + tsm_core); > +} > + > +static struct platform_driver devsec_tsm_driver = { > + .driver = { > + .name = "devsec_tsm", > + }, > +}; > + > +static struct platform_device *devsec_tsm; > + > +static int __init devsec_tsm_init(void) > +{ > + struct platform_device_info devsec_tsm_info = { > + .name = "devsec_tsm", > + .id = -1, > + }; > + int rc; > + > + devsec_tsm = platform_device_register_full(&devsec_tsm_info); > + if (IS_ERR(devsec_tsm)) > + return PTR_ERR(devsec_tsm); > + > + rc = platform_driver_probe(&devsec_tsm_driver, > devsec_tsm_probe); > + if (rc) > + platform_device_unregister(devsec_tsm); > + return rc; > +} > +module_init(devsec_tsm_init); > + > +static void __exit devsec_tsm_exit(void) > +{ > + platform_driver_unregister(&devsec_tsm_driver); > + platform_device_unregister(devsec_tsm); > +} > +module_exit(devsec_tsm_exit); > + > +MODULE_LICENSE("GPL"); > +MODULE_DESCRIPTION("Device Security Sample Infrastructure: Platform > TSM Driver"); > >