MGMT_OP_SET_EXP_FEATURE,
        MGMT_OP_READ_DEF_SYSTEM_CONFIG,
        MGMT_OP_SET_DEF_SYSTEM_CONFIG,
+       MGMT_OP_READ_DEF_RUNTIME_CONFIG,
+       MGMT_OP_SET_DEF_RUNTIME_CONFIG,
 };
 
 static const u16 mgmt_events[] = {
        MGMT_OP_READ_SECURITY_INFO,
        MGMT_OP_READ_EXP_FEATURES_INFO,
        MGMT_OP_READ_DEF_SYSTEM_CONFIG,
+       MGMT_OP_READ_DEF_RUNTIME_CONFIG,
 };
 
 static const u16 mgmt_untrusted_events[] = {
                                                HCI_MGMT_UNTRUSTED },
        { set_def_system_config,   MGMT_SET_DEF_SYSTEM_CONFIG_SIZE,
                                                HCI_MGMT_VAR_LEN },
+       { read_def_runtime_config, MGMT_READ_DEF_RUNTIME_CONFIG_SIZE,
+                                               HCI_MGMT_UNTRUSTED },
+       { set_def_runtime_config,  MGMT_SET_DEF_RUNTIME_CONFIG_SIZE,
+                                               HCI_MGMT_VAR_LEN },
 };
 
 void mgmt_index_added(struct hci_dev *hdev)
 
                               MGMT_OP_SET_DEF_SYSTEM_CONFIG,
                               MGMT_STATUS_SUCCESS);
 }
+
+int read_def_runtime_config(struct sock *sk, struct hci_dev *hdev, void *data,
+                           u16 data_len)
+{
+       bt_dev_dbg(hdev, "sock %p", sk);
+
+       return mgmt_cmd_complete(sk, hdev->id,
+                                MGMT_OP_READ_DEF_RUNTIME_CONFIG, 0, NULL, 0);
+}
+
+int set_def_runtime_config(struct sock *sk, struct hci_dev *hdev, void *data,
+                          u16 data_len)
+{
+       bt_dev_dbg(hdev, "sock %p", sk);
+
+       return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEF_SYSTEM_CONFIG,
+                              MGMT_STATUS_INVALID_PARAMS);
+}
 
 
 int set_def_system_config(struct sock *sk, struct hci_dev *hdev, void *data,
                          u16 data_len);
+
+int read_def_runtime_config(struct sock *sk, struct hci_dev *hdev, void *data,
+                           u16 data_len);
+
+int set_def_runtime_config(struct sock *sk, struct hci_dev *hdev, void *data,
+                          u16 data_len);