driver.c (a41759500b7164abfe509e432b3da1619bc62763) driver.c (db9cc5e677783a8a9157804f4a61bb81d83049ac)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * System Control and Management Interface (SCMI) Message Protocol driver
4 *
5 * SCMI Message Protocol is used between the System Control Processor(SCP)
6 * and the Application Processors(AP). The Message Handling Unit(MHU)
7 * provides a mechanism for inter-processor communication between SCP's
8 * Cortex M3 and AP.

--- 3304 unchanged lines hidden (view full) ---

3313 &dev_attr_vendor_id.attr,
3314 &dev_attr_sub_vendor_id.attr,
3315 NULL,
3316};
3317ATTRIBUTE_GROUPS(versions);
3318
3319/* Each compatible listed below must have descriptor associated with it */
3320static const struct of_device_id scmi_of_match[] = {
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * System Control and Management Interface (SCMI) Message Protocol driver
4 *
5 * SCMI Message Protocol is used between the System Control Processor(SCP)
6 * and the Application Processors(AP). The Message Handling Unit(MHU)
7 * provides a mechanism for inter-processor communication between SCP's
8 * Cortex M3 and AP.

--- 3304 unchanged lines hidden (view full) ---

3313 &dev_attr_vendor_id.attr,
3314 &dev_attr_sub_vendor_id.attr,
3315 NULL,
3316};
3317ATTRIBUTE_GROUPS(versions);
3318
3319/* Each compatible listed below must have descriptor associated with it */
3320static const struct of_device_id scmi_of_match[] = {
3321#ifdef CONFIG_ARM_SCMI_TRANSPORT_OPTEE
3322 { .compatible = "linaro,scmi-optee", .data = &scmi_optee_desc },
3323#endif
3324#ifdef CONFIG_ARM_SCMI_TRANSPORT_VIRTIO
3325 { .compatible = "arm,scmi-virtio", .data = &scmi_virtio_desc},
3326#endif
3327 { /* Sentinel */ },
3328};
3329
3330MODULE_DEVICE_TABLE(of, scmi_of_match);
3331

--- 136 unchanged lines hidden ---
3321#ifdef CONFIG_ARM_SCMI_TRANSPORT_VIRTIO
3322 { .compatible = "arm,scmi-virtio", .data = &scmi_virtio_desc},
3323#endif
3324 { /* Sentinel */ },
3325};
3326
3327MODULE_DEVICE_TABLE(of, scmi_of_match);
3328

--- 136 unchanged lines hidden ---