void ath11k_debugfs_unregister(struct ath11k *ar)
 {
 }
+
+static ssize_t ath11k_write_twt_add_dialog(struct file *file,
+                                          const char __user *ubuf,
+                                          size_t count, loff_t *ppos)
+{
+       struct ath11k_vif *arvif = file->private_data;
+       struct wmi_twt_add_dialog_params params = { 0 };
+       u8 buf[128] = {0};
+       int ret;
+
+       if (arvif->ar->twt_enabled == 0) {
+               ath11k_err(arvif->ar->ab, "twt support is not enabled\n");
+               return -EOPNOTSUPP;
+       }
+
+       ret = simple_write_to_buffer(buf, sizeof(buf) - 1, ppos, ubuf, count);
+       if (ret < 0)
+               return ret;
+
+       buf[ret] = '\0';
+       ret = sscanf(buf,
+                    "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx %u %u %u %u %u %hhu %hhu %hhu %hhu %hhu",
+                    ¶ms.peer_macaddr[0],
+                    ¶ms.peer_macaddr[1],
+                    ¶ms.peer_macaddr[2],
+                    ¶ms.peer_macaddr[3],
+                    ¶ms.peer_macaddr[4],
+                    ¶ms.peer_macaddr[5],
+                    ¶ms.dialog_id,
+                    ¶ms.wake_intvl_us,
+                    ¶ms.wake_intvl_mantis,
+                    ¶ms.wake_dura_us,
+                    ¶ms.sp_offset_us,
+                    ¶ms.twt_cmd,
+                    ¶ms.flag_bcast,
+                    ¶ms.flag_trigger,
+                    ¶ms.flag_flow_type,
+                    ¶ms.flag_protection);
+       if (ret != 16)
+               return -EINVAL;
+
+       params.vdev_id = arvif->vdev_id;
+
+       ret = ath11k_wmi_send_twt_add_dialog_cmd(arvif->ar, ¶ms);
+       if (ret)
+               return ret;
+
+       return count;
+}
+
+static ssize_t ath11k_write_twt_del_dialog(struct file *file,
+                                          const char __user *ubuf,
+                                          size_t count, loff_t *ppos)
+{
+       struct ath11k_vif *arvif = file->private_data;
+       struct wmi_twt_del_dialog_params params = { 0 };
+       u8 buf[64] = {0};
+       int ret;
+
+       if (arvif->ar->twt_enabled == 0) {
+               ath11k_err(arvif->ar->ab, "twt support is not enabled\n");
+               return -EOPNOTSUPP;
+       }
+
+       ret = simple_write_to_buffer(buf, sizeof(buf) - 1, ppos, ubuf, count);
+       if (ret < 0)
+               return ret;
+
+       buf[ret] = '\0';
+       ret = sscanf(buf, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx %u",
+                    ¶ms.peer_macaddr[0],
+                    ¶ms.peer_macaddr[1],
+                    ¶ms.peer_macaddr[2],
+                    ¶ms.peer_macaddr[3],
+                    ¶ms.peer_macaddr[4],
+                    ¶ms.peer_macaddr[5],
+                    ¶ms.dialog_id);
+       if (ret != 7)
+               return -EINVAL;
+
+       params.vdev_id = arvif->vdev_id;
+
+       ret = ath11k_wmi_send_twt_del_dialog_cmd(arvif->ar, ¶ms);
+       if (ret)
+               return ret;
+
+       return count;
+}
+
+static ssize_t ath11k_write_twt_pause_dialog(struct file *file,
+                                            const char __user *ubuf,
+                                            size_t count, loff_t *ppos)
+{
+       struct ath11k_vif *arvif = file->private_data;
+       struct wmi_twt_pause_dialog_params params = { 0 };
+       u8 buf[64] = {0};
+       int ret;
+
+       if (arvif->ar->twt_enabled == 0) {
+               ath11k_err(arvif->ar->ab, "twt support is not enabled\n");
+               return -EOPNOTSUPP;
+       }
+
+       ret = simple_write_to_buffer(buf, sizeof(buf) - 1, ppos, ubuf, count);
+       if (ret < 0)
+               return ret;
+
+       buf[ret] = '\0';
+       ret = sscanf(buf, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx %u",
+                    ¶ms.peer_macaddr[0],
+                    ¶ms.peer_macaddr[1],
+                    ¶ms.peer_macaddr[2],
+                    ¶ms.peer_macaddr[3],
+                    ¶ms.peer_macaddr[4],
+                    ¶ms.peer_macaddr[5],
+                    ¶ms.dialog_id);
+       if (ret != 7)
+               return -EINVAL;
+
+       params.vdev_id = arvif->vdev_id;
+
+       ret = ath11k_wmi_send_twt_pause_dialog_cmd(arvif->ar, ¶ms);
+       if (ret)
+               return ret;
+
+       return count;
+}
+
+static ssize_t ath11k_write_twt_resume_dialog(struct file *file,
+                                             const char __user *ubuf,
+                                             size_t count, loff_t *ppos)
+{
+       struct ath11k_vif *arvif = file->private_data;
+       struct wmi_twt_resume_dialog_params params = { 0 };
+       u8 buf[64] = {0};
+       int ret;
+
+       if (arvif->ar->twt_enabled == 0) {
+               ath11k_err(arvif->ar->ab, "twt support is not enabled\n");
+               return -EOPNOTSUPP;
+       }
+
+       ret = simple_write_to_buffer(buf, sizeof(buf) - 1, ppos, ubuf, count);
+       if (ret < 0)
+               return ret;
+
+       buf[ret] = '\0';
+       ret = sscanf(buf, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx %u %u %u",
+                    ¶ms.peer_macaddr[0],
+                    ¶ms.peer_macaddr[1],
+                    ¶ms.peer_macaddr[2],
+                    ¶ms.peer_macaddr[3],
+                    ¶ms.peer_macaddr[4],
+                    ¶ms.peer_macaddr[5],
+                    ¶ms.dialog_id,
+                    ¶ms.sp_offset_us,
+                    ¶ms.next_twt_size);
+       if (ret != 9)
+               return -EINVAL;
+
+       params.vdev_id = arvif->vdev_id;
+
+       ret = ath11k_wmi_send_twt_resume_dialog_cmd(arvif->ar, ¶ms);
+       if (ret)
+               return ret;
+
+       return count;
+}
+
+static const struct file_operations ath11k_fops_twt_add_dialog = {
+       .write = ath11k_write_twt_add_dialog,
+       .open = simple_open
+};
+
+static const struct file_operations ath11k_fops_twt_del_dialog = {
+       .write = ath11k_write_twt_del_dialog,
+       .open = simple_open
+};
+
+static const struct file_operations ath11k_fops_twt_pause_dialog = {
+       .write = ath11k_write_twt_pause_dialog,
+       .open = simple_open
+};
+
+static const struct file_operations ath11k_fops_twt_resume_dialog = {
+       .write = ath11k_write_twt_resume_dialog,
+       .open = simple_open
+};
+
+int ath11k_debugfs_add_interface(struct ath11k_vif *arvif)
+{
+       if (arvif->vif->type == NL80211_IFTYPE_AP && !arvif->debugfs_twt) {
+               arvif->debugfs_twt = debugfs_create_dir("twt",
+                                                       arvif->vif->debugfs_dir);
+               if (!arvif->debugfs_twt || IS_ERR(arvif->debugfs_twt)) {
+                       ath11k_warn(arvif->ar->ab,
+                                   "failed to create directory %p\n",
+                                   arvif->debugfs_twt);
+                       arvif->debugfs_twt = NULL;
+                       return -1;
+               }
+
+               debugfs_create_file("add_dialog", 0200, arvif->debugfs_twt,
+                                   arvif, &ath11k_fops_twt_add_dialog);
+
+               debugfs_create_file("del_dialog", 0200, arvif->debugfs_twt,
+                                   arvif, &ath11k_fops_twt_del_dialog);
+
+               debugfs_create_file("pause_dialog", 0200, arvif->debugfs_twt,
+                                   arvif, &ath11k_fops_twt_pause_dialog);
+
+               debugfs_create_file("resume_dialog", 0200, arvif->debugfs_twt,
+                                   arvif, &ath11k_fops_twt_resume_dialog);
+       }
+       return 0;
+}
+
+void ath11k_debugfs_remove_interface(struct ath11k_vif *arvif)
+{
+       debugfs_remove_recursive(arvif->debugfs_twt);
+       arvif->debugfs_twt = NULL;
+}