]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - k3conf/k3conf.git/blobdiff - include/tisci_protocol.h
soc: am65x: Add processors info
[k3conf/k3conf.git] / include / tisci_protocol.h
index b40baec1adbde785b7f22100e716fb22ed7da221..6d28bbbfd70cac6a056169c6f6fc51aa16da07f0 100644 (file)
 #include <sec_proxy.h>
 
 #define TI_SCI_MSG_VERSION             0x0002
 #include <sec_proxy.h>
 
 #define TI_SCI_MSG_VERSION             0x0002
+/* Device requests */
+#define TI_SCI_MSG_SET_DEVICE_STATE    0x0200
+#define TI_SCI_MSG_GET_DEVICE_STATE    0x0201
+/* Clock requests */
+#define TI_SCI_MSG_SET_CLOCK_STATE     0x0100
+#define TI_SCI_MSG_GET_CLOCK_STATE     0x0101
+#define TI_SCI_MSG_SET_CLOCK_FREQ      0x010c
+#define TI_SCI_MSG_QUERY_CLOCK_FREQ    0x010d
+#define TI_SCI_MSG_GET_CLOCK_FREQ      0x010e
 
 #define TI_SCI_MSG_FLAG(val)                   (1 << (val))
 #define TI_SCI_FLAG_REQ_GENERIC_NORESPONSE     0x0
 
 #define TI_SCI_MSG_FLAG(val)                   (1 << (val))
 #define TI_SCI_FLAG_REQ_GENERIC_NORESPONSE     0x0
@@ -68,6 +77,107 @@ struct ti_sci_secure_msg_hdr {
        uint16_t reserved;
 } __attribute__ ((__packed__));
 
        uint16_t reserved;
 } __attribute__ ((__packed__));
 
+struct ti_sci_msg_req_set_device_state {
+       /* Additional hdr->flags options */
+#define MSG_FLAG_DEVICE_WAKE_ENABLED   TI_SCI_MSG_FLAG(8)
+#define MSG_FLAG_DEVICE_RESET_ISO      TI_SCI_MSG_FLAG(9)
+#define MSG_FLAG_DEVICE_EXCLUSIVE      TI_SCI_MSG_FLAG(10)
+       struct ti_sci_msg_hdr hdr;
+       uint32_t id;
+       uint32_t reserved;
+#define MSG_DEVICE_SW_STATE_AUTO_OFF   0
+#define MSG_DEVICE_SW_STATE_RETENTION  1
+#define MSG_DEVICE_SW_STATE_ON         2
+       uint8_t state;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_req_get_device_state {
+       struct ti_sci_msg_hdr hdr;
+       uint32_t id;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_resp_get_device_state {
+       struct ti_sci_msg_hdr hdr;
+       uint32_t context_loss_count;
+       uint32_t resets;
+       uint8_t programmed_state;
+#define MSG_DEVICE_HW_STATE_OFF                0
+#define MSG_DEVICE_HW_STATE_ON         1
+#define MSG_DEVICE_HW_STATE_TRANS      2
+#define MAX_DEVICE_HW_STATES           3
+       uint8_t current_state;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_req_set_clock_state {
+       /* Additional hdr->flags options */
+#define MSG_FLAG_CLOCK_ALLOW_SSC               TI_SCI_MSG_FLAG(8)
+#define MSG_FLAG_CLOCK_ALLOW_FREQ_CHANGE       TI_SCI_MSG_FLAG(9)
+#define MSG_FLAG_CLOCK_INPUT_TERM              TI_SCI_MSG_FLAG(10)
+       struct ti_sci_msg_hdr hdr;
+       uint32_t dev_id;
+       uint8_t clk_id;
+#define MSG_CLOCK_SW_STATE_UNREQ       0
+#define MSG_CLOCK_SW_STATE_AUTO                1
+#define MSG_CLOCK_SW_STATE_REQ         2
+       uint8_t request_state;
+       uint32_t clk_id_32;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_req_get_clock_state {
+       struct ti_sci_msg_hdr hdr;
+       uint32_t dev_id;
+       uint8_t clk_id;
+       uint32_t clk_id_32;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_resp_get_clock_state {
+       struct ti_sci_msg_hdr hdr;
+       uint8_t programmed_state;
+#define MSG_CLOCK_HW_STATE_NOT_READY   0
+#define MSG_CLOCK_HW_STATE_READY       1
+#define MAX_CLOCK_HW_STATES            2
+       uint8_t current_state;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_req_query_clock_freq {
+       struct ti_sci_msg_hdr hdr;
+       uint32_t dev_id;
+       uint64_t min_freq_hz;
+       uint64_t target_freq_hz;
+       uint64_t max_freq_hz;
+       uint8_t clk_id;
+       uint32_t clk_id_32;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_resp_query_clock_freq {
+       struct ti_sci_msg_hdr hdr;
+       uint64_t freq_hz;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_req_set_clock_freq {
+       struct ti_sci_msg_hdr hdr;
+       uint32_t dev_id;
+       uint64_t min_freq_hz;
+       uint64_t target_freq_hz;
+       uint64_t max_freq_hz;
+       uint8_t clk_id;
+       uint32_t clk_id_32;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_req_get_clock_freq {
+       struct ti_sci_msg_hdr hdr;
+       uint32_t dev_id;
+       uint8_t clk_id;
+       uint32_t clk_id_32;
+} __attribute__ ((__packed__));
+
+struct ti_sci_msg_resp_get_clock_freq {
+       struct ti_sci_msg_hdr hdr;
+       uint64_t freq_hz;
+} __attribute__ ((__packed__));
+
+void ti_sci_setup_header(struct ti_sci_msg_hdr *hdr, uint16_t type,
+                        uint32_t flags);
 int ti_sci_xfer_msg(struct k3_sec_proxy_msg *msg);
 
 static inline uint8_t ti_sci_is_response_ack(uint8_t *resp)
 int ti_sci_xfer_msg(struct k3_sec_proxy_msg *msg);
 
 static inline uint8_t ti_sci_is_response_ack(uint8_t *resp)