greybus: interface: implement generic mode-switch functionality
[cascardo/linux.git] / drivers / staging / greybus / interface.h
index 9a9260c..603f146 100644 (file)
 #ifndef __INTERFACE_H
 #define __INTERFACE_H
 
-/* Greybus "public" definitions" */
+#define GB_INTERFACE_QUIRK_NO_CPORT_FEATURES           BIT(0)
+#define GB_INTERFACE_QUIRK_NO_INIT_STATUS              BIT(1)
+#define GB_INTERFACE_QUIRK_NO_ARA_IDS                  BIT(2)
+#define GB_INTERFACE_QUIRK_FORCED_DISABLE              BIT(3)
+#define GB_INTERFACE_QUIRK_LEGACY_MODE_SWITCH          BIT(4)
+
 struct gb_interface {
        struct device dev;
        struct gb_control *control;
-       struct gb_svc *svc;
 
        struct list_head bundles;
-       struct list_head links; /* greybus_host_device->interfaces */
+       struct list_head module_node;
        struct list_head manifest_descs;
        u8 interface_id;        /* Physical location within the Endo */
-       u8 device_id;           /* Device id allocated for the interface block by the SVC */
+       u8 device_id;
+       u8 features;            /* Feature flags set in the manifest */
 
-       /* Information taken from the manifest descriptor */
-       u16 vendor;
-       u16 product;
-       char *vendor_string;
-       char *product_string;
-       u64 unique_id;
+       u32 ddbl1_manufacturer_id;
+       u32 ddbl1_product_id;
+       u32 vendor_id;
+       u32 product_id;
+       u64 serial_number;
 
+       struct gb_host_device *hd;
        struct gb_module *module;
-       struct greybus_host_device *hd;
-};
-#define to_gb_interface(d) container_of(d, struct gb_interface, dev)
 
-static inline void gb_interface_set_drvdata(struct gb_interface *intf,
-                                           void *data)
-{
-       dev_set_drvdata(&intf->dev, data);
-}
+       unsigned long quirks;
 
-static inline void *gb_interface_get_drvdata(struct gb_interface *intf)
-{
-       return dev_get_drvdata(&intf->dev);
-}
+       struct mutex mutex;
 
-/* Greybus "private" definitions */
+       bool disconnected;
 
-struct gb_interface *gb_interface_find(struct greybus_host_device *hd,
-                                      u8 interface_id);
+       bool ejected;
+       bool active;
+       bool enabled;
+       bool mode_switch;
 
-struct gb_interface *gb_interface_create(struct greybus_host_device *hd,
+       struct work_struct mode_switch_work;
+       struct completion mode_switch_completion;
+};
+#define to_gb_interface(d) container_of(d, struct gb_interface, dev)
+
+struct gb_interface *gb_interface_create(struct gb_module *module,
                                         u8 interface_id);
-int gb_interface_init(struct gb_interface *intf, u8 device_id);
-void gb_interface_destroy(struct gb_interface *intf);
-void gb_interface_remove(struct greybus_host_device *hd, u8 interface_id);
-void gb_interfaces_remove(struct greybus_host_device *hd);
+int gb_interface_activate(struct gb_interface *intf);
+void gb_interface_deactivate(struct gb_interface *intf);
+int gb_interface_enable(struct gb_interface *intf);
+void gb_interface_disable(struct gb_interface *intf);
+int gb_interface_add(struct gb_interface *intf);
+void gb_interface_del(struct gb_interface *intf);
+void gb_interface_put(struct gb_interface *intf);
+void gb_interface_mailbox_event(struct gb_interface *intf, u16 result,
+                                                               u32 mailbox);
+
+int gb_interface_request_mode_switch(struct gb_interface *intf);
 
-int gb_create_bundle_connection(struct gb_interface *intf, u8 class);
 #endif /* __INTERFACE_H */