diff --git a/0087-LSM-Infrastructure-management-of-the-cred-.patch b/0087-LSM-Infrastructure-management-of-the-cred-.patch index 56696b64..b9479ec8 100644 --- a/0087-LSM-Infrastructure-management-of-the-cred-.patch +++ b/0087-LSM-Infrastructure-management-of-the-cred-.patch @@ -33,24 +33,24 @@ Signed-off-by: Casey Schaufler security/tomoyo/tomoyo.c | 56 +++++++++++++--- 17 files changed, 303 insertions(+), 143 deletions(-) -diff --git a/include/linux/lsm_hooks.h b/include/linux/lsm_hooks.h -index 97a020c616ad..0bef312efd45 100644 ---- a/include/linux/lsm_hooks.h -+++ b/include/linux/lsm_hooks.h -@@ -2024,6 +2024,13 @@ struct security_hook_list { - char *lsm; +Index: kernel-lts2018/include/linux/lsm_hooks.h +=================================================================== +--- kernel-lts2018.orig/include/linux/lsm_hooks.h ++++ kernel-lts2018/include/linux/lsm_hooks.h +@@ -2025,6 +2025,13 @@ struct security_hook_list { } __randomize_layout; -+/* + /* + * Security blob size or offset data. + */ +struct lsm_blob_sizes { + int lbs_cred; +}; + - /* ++/* * Initializing a security_hook_list structure takes * up a lot of space in a source file. This macro takes + * care of the common case and reduces the amount of @@ -2036,6 +2043,7 @@ struct security_hook_list { extern struct security_hook_heads security_hook_heads; extern char *lsm_names; @@ -70,11 +70,11 @@ index 97a020c616ad..0bef312efd45 100644 +#endif + #endif /* ! __LINUX_LSM_HOOKS_H */ -diff --git a/kernel/cred.c b/kernel/cred.c -index ecf03657e71c..fa2061ee4955 100644 ---- a/kernel/cred.c -+++ b/kernel/cred.c -@@ -704,19 +704,6 @@ bool creds_are_invalid(const struct cred *cred) +Index: kernel-lts2018/kernel/cred.c +=================================================================== +--- kernel-lts2018.orig/kernel/cred.c ++++ kernel-lts2018/kernel/cred.c +@@ -704,19 +704,6 @@ bool creds_are_invalid(const struct cred { if (cred->magic != CRED_MAGIC) return true; @@ -94,10 +94,10 @@ index ecf03657e71c..fa2061ee4955 100644 return false; } EXPORT_SYMBOL(creds_are_invalid); -diff --git a/security/Kconfig b/security/Kconfig -index d9aa521b5206..0447d9d8c875 100644 ---- a/security/Kconfig -+++ b/security/Kconfig +Index: kernel-lts2018/security/Kconfig +=================================================================== +--- kernel-lts2018.orig/security/Kconfig ++++ kernel-lts2018/security/Kconfig @@ -36,6 +36,17 @@ config SECURITY_WRITABLE_HOOKS bool default n @@ -116,11 +116,11 @@ index d9aa521b5206..0447d9d8c875 100644 config SECURITYFS bool "Enable the securityfs filesystem" help -diff --git a/security/apparmor/domain.c b/security/apparmor/domain.c -index 08c88de0ffda..726910bba84b 100644 ---- a/security/apparmor/domain.c -+++ b/security/apparmor/domain.c -@@ -975,7 +975,7 @@ int apparmor_bprm_set_creds(struct linux_binprm *bprm) +Index: kernel-lts2018/security/apparmor/domain.c +=================================================================== +--- kernel-lts2018.orig/security/apparmor/domain.c ++++ kernel-lts2018/security/apparmor/domain.c +@@ -975,7 +975,7 @@ int apparmor_bprm_set_creds(struct linux } aa_put_label(cred_label(bprm->cred)); /* transfer reference, released when cred is freed */ @@ -129,10 +129,10 @@ index 08c88de0ffda..726910bba84b 100644 done: aa_put_label(label); -diff --git a/security/apparmor/include/cred.h b/security/apparmor/include/cred.h -index e287b7d0d4be..a90eae76d7c1 100644 ---- a/security/apparmor/include/cred.h -+++ b/security/apparmor/include/cred.h +Index: kernel-lts2018/security/apparmor/include/cred.h +=================================================================== +--- kernel-lts2018.orig/security/apparmor/include/cred.h ++++ kernel-lts2018/security/apparmor/include/cred.h @@ -23,8 +23,22 @@ #include "policy_ns.h" #include "task.h" @@ -141,11 +141,11 @@ index e287b7d0d4be..a90eae76d7c1 100644 +static inline struct aa_label *cred_label(const struct cred *cred) +{ + struct aa_label **blob = cred->security; -+ + + AA_BUG(!blob); + return *blob; +} - ++ +static inline void set_cred_label(const struct cred *cred, + struct aa_label *label) +{ @@ -157,11 +157,11 @@ index e287b7d0d4be..a90eae76d7c1 100644 /** * aa_cred_raw_label - obtain cred's label -diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c -index 8b8b70620bbe..c2566aaa138e 100644 ---- a/security/apparmor/lsm.c -+++ b/security/apparmor/lsm.c -@@ -57,7 +57,7 @@ DEFINE_PER_CPU(struct aa_buffers, aa_buffers); +Index: kernel-lts2018/security/apparmor/lsm.c +=================================================================== +--- kernel-lts2018.orig/security/apparmor/lsm.c ++++ kernel-lts2018/security/apparmor/lsm.c +@@ -57,7 +57,7 @@ DEFINE_PER_CPU(struct aa_buffers, aa_buf static void apparmor_cred_free(struct cred *cred) { aa_put_label(cred_label(cred)); @@ -170,7 +170,7 @@ index 8b8b70620bbe..c2566aaa138e 100644 } /* -@@ -65,7 +65,7 @@ static void apparmor_cred_free(struct cred *cred) +@@ -65,7 +65,7 @@ static void apparmor_cred_free(struct cr */ static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp) { @@ -179,7 +179,7 @@ index 8b8b70620bbe..c2566aaa138e 100644 return 0; } -@@ -75,7 +75,7 @@ static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp) +@@ -75,7 +75,7 @@ static int apparmor_cred_alloc_blank(str static int apparmor_cred_prepare(struct cred *new, const struct cred *old, gfp_t gfp) { @@ -188,7 +188,7 @@ index 8b8b70620bbe..c2566aaa138e 100644 return 0; } -@@ -84,7 +84,7 @@ static int apparmor_cred_prepare(struct cred *new, const struct cred *old, +@@ -84,7 +84,7 @@ static int apparmor_cred_prepare(struct */ static void apparmor_cred_transfer(struct cred *new, const struct cred *old) { @@ -197,7 +197,7 @@ index 8b8b70620bbe..c2566aaa138e 100644 } static void apparmor_task_free(struct task_struct *task) -@@ -1126,6 +1126,13 @@ static void apparmor_sock_graft(struct sock *sk, struct socket *parent) +@@ -1126,6 +1126,13 @@ static void apparmor_sock_graft(struct s ctx->label = aa_get_current_label(); } @@ -221,7 +221,7 @@ index 8b8b70620bbe..c2566aaa138e 100644 task_ctx(current) = ctx; return 0; -@@ -1540,8 +1548,18 @@ static inline int apparmor_init_sysctl(void) +@@ -1540,8 +1548,18 @@ static inline int apparmor_init_sysctl(v static int __init apparmor_init(void) { @@ -240,11 +240,11 @@ index 8b8b70620bbe..c2566aaa138e 100644 if (!apparmor_enabled || !security_module_enable("apparmor")) { aa_info_message("AppArmor disabled by boot time parameter"); apparmor_enabled = false; -diff --git a/security/apparmor/task.c b/security/apparmor/task.c -index c6b78a14da91..4551110f0496 100644 ---- a/security/apparmor/task.c -+++ b/security/apparmor/task.c -@@ -81,7 +81,7 @@ int aa_replace_current_label(struct aa_label *label) +Index: kernel-lts2018/security/apparmor/task.c +=================================================================== +--- kernel-lts2018.orig/security/apparmor/task.c ++++ kernel-lts2018/security/apparmor/task.c +@@ -81,7 +81,7 @@ int aa_replace_current_label(struct aa_l */ aa_get_label(label); aa_put_label(cred_label(new)); @@ -253,7 +253,7 @@ index c6b78a14da91..4551110f0496 100644 commit_creds(new); return 0; -@@ -138,7 +138,7 @@ int aa_set_current_hat(struct aa_label *label, u64 token) +@@ -138,7 +138,7 @@ int aa_set_current_hat(struct aa_label * return -EACCES; } @@ -271,11 +271,11 @@ index c6b78a14da91..4551110f0496 100644 AA_BUG(!cred_label(new)); /* clear exec && prev information when restoring to previous context */ aa_clear_task_ctx_trans(ctx); -diff --git a/security/security.c b/security/security.c -index 3dfe75d0d373..ff7df14f6db1 100644 ---- a/security/security.c -+++ b/security/security.c -@@ -41,6 +41,8 @@ struct security_hook_heads security_hook_heads __lsm_ro_after_init; +Index: kernel-lts2018/security/security.c +=================================================================== +--- kernel-lts2018.orig/security/security.c ++++ kernel-lts2018/security/security.c +@@ -41,6 +41,8 @@ struct security_hook_heads security_hook static ATOMIC_NOTIFIER_HEAD(lsm_notifier_chain); char *lsm_names; @@ -308,7 +308,7 @@ index 3dfe75d0d373..ff7df14f6db1 100644 return 0; } -@@ -198,6 +212,73 @@ int unregister_lsm_notifier(struct notifier_block *nb) +@@ -198,6 +212,73 @@ int unregister_lsm_notifier(struct notif } EXPORT_SYMBOL(unregister_lsm_notifier); @@ -382,7 +382,7 @@ index 3dfe75d0d373..ff7df14f6db1 100644 /* * Hook list operation macros. * -@@ -998,17 +1079,36 @@ void security_task_free(struct task_struct *task) +@@ -998,7 +1079,15 @@ void security_task_free(struct task_stru int security_cred_alloc_blank(struct cred *cred, gfp_t gfp) { @@ -399,7 +399,9 @@ index 3dfe75d0d373..ff7df14f6db1 100644 } void security_cred_free(struct cred *cred) - { +@@ -1011,11 +1100,22 @@ void security_cred_free(struct cred *cre + return; + call_void_hook(cred_free, cred); + + kfree(cred->security); @@ -421,10 +423,10 @@ index 3dfe75d0d373..ff7df14f6db1 100644 } void security_transfer_creds(struct cred *new, const struct cred *old) -diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c -index 9d6cdd21acb6..9b49698754a7 100644 ---- a/security/selinux/hooks.c -+++ b/security/selinux/hooks.c +Index: kernel-lts2018/security/selinux/hooks.c +=================================================================== +--- kernel-lts2018.orig/security/selinux/hooks.c ++++ kernel-lts2018/security/selinux/hooks.c @@ -213,12 +213,9 @@ static void cred_init_security(void) struct cred *cred = (struct cred *) current->real_cred; struct task_security_struct *tsec; @@ -440,11 +442,10 @@ index 9d6cdd21acb6..9b49698754a7 100644 } /* -@@ -3898,53 +3895,17 @@ static int selinux_task_alloc(struct task_struct *task, - sid, sid, SECCLASS_PROCESS, PROCESS__FORK, NULL); +@@ -3904,52 +3901,16 @@ static int selinux_task_alloc(struct tas } --/* + /* - * allocate the SELinux part of blank credentials - */ -static int selinux_cred_alloc_blank(struct cred *cred, gfp_t gfp) @@ -475,7 +476,7 @@ index 9d6cdd21acb6..9b49698754a7 100644 - kfree(tsec); -} - - /* +-/* * prepare a new set of credentials for modification */ static int selinux_cred_prepare(struct cred *new, const struct cred *old, @@ -497,7 +498,7 @@ index 9d6cdd21acb6..9b49698754a7 100644 return 0; } -@@ -6894,6 +6855,10 @@ static void selinux_bpf_prog_free(struct bpf_prog_aux *aux) +@@ -6902,6 +6863,10 @@ static void selinux_bpf_prog_free(struct } #endif @@ -508,7 +509,7 @@ index 9d6cdd21acb6..9b49698754a7 100644 static struct security_hook_list selinux_hooks[] __lsm_ro_after_init = { LSM_HOOK_INIT(binder_set_context_mgr, selinux_binder_set_context_mgr), LSM_HOOK_INIT(binder_transaction, selinux_binder_transaction), -@@ -6976,8 +6941,6 @@ static struct security_hook_list selinux_hooks[] __lsm_ro_after_init = { +@@ -6984,8 +6949,6 @@ static struct security_hook_list selinux LSM_HOOK_INIT(file_open, selinux_file_open), LSM_HOOK_INIT(task_alloc, selinux_task_alloc), @@ -517,7 +518,7 @@ index 9d6cdd21acb6..9b49698754a7 100644 LSM_HOOK_INIT(cred_prepare, selinux_cred_prepare), LSM_HOOK_INIT(cred_transfer, selinux_cred_transfer), LSM_HOOK_INIT(cred_getsecid, selinux_cred_getsecid), -@@ -7133,11 +7096,19 @@ static struct security_hook_list selinux_hooks[] __lsm_ro_after_init = { +@@ -7141,11 +7104,19 @@ static struct security_hook_list selinux static __init int selinux_init(void) { @@ -537,10 +538,10 @@ index 9d6cdd21acb6..9b49698754a7 100644 if (!selinux_enabled) { pr_info("SELinux: Disabled at boot.\n"); return 0; -diff --git a/security/selinux/include/objsec.h b/security/selinux/include/objsec.h -index 734b6833bdff..db1c7000ada3 100644 ---- a/security/selinux/include/objsec.h -+++ b/security/selinux/include/objsec.h +Index: kernel-lts2018/security/selinux/include/objsec.h +=================================================================== +--- kernel-lts2018.orig/security/selinux/include/objsec.h ++++ kernel-lts2018/security/selinux/include/objsec.h @@ -25,6 +25,9 @@ #include #include @@ -559,10 +560,10 @@ index 734b6833bdff..db1c7000ada3 100644 static inline struct task_security_struct *selinux_cred(const struct cred *cred) { return cred->security; -diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c -index f3a5a138a096..b5665bdc29fc 100644 ---- a/security/selinux/selinuxfs.c -+++ b/security/selinux/selinuxfs.c +Index: kernel-lts2018/security/selinux/selinuxfs.c +=================================================================== +--- kernel-lts2018.orig/security/selinux/selinuxfs.c ++++ kernel-lts2018/security/selinux/selinuxfs.c @@ -31,6 +31,7 @@ #include #include @@ -571,10 +572,10 @@ index f3a5a138a096..b5665bdc29fc 100644 /* selinuxfs pseudo filesystem for exporting the security policy API. Based on the proc code and the fs/nfsd/nfsctl.c code. */ -diff --git a/security/smack/smack.h b/security/smack/smack.h -index 0b55d6a55b26..0c6dce446825 100644 ---- a/security/smack/smack.h -+++ b/security/smack/smack.h +Index: kernel-lts2018/security/smack/smack.h +=================================================================== +--- kernel-lts2018.orig/security/smack/smack.h ++++ kernel-lts2018/security/smack/smack.h @@ -24,6 +24,7 @@ #include #include @@ -583,11 +584,11 @@ index 0b55d6a55b26..0c6dce446825 100644 /* * Use IPv6 port labeling if IPv6 is enabled and secmarks -diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c -index 68ee3ae8f25c..a06ea8aa89c4 100644 ---- a/security/smack/smack_lsm.c -+++ b/security/smack/smack_lsm.c -@@ -309,29 +309,20 @@ static struct inode_smack *new_inode_smack(struct smack_known *skp) +Index: kernel-lts2018/security/smack/smack_lsm.c +=================================================================== +--- kernel-lts2018.orig/security/smack/smack_lsm.c ++++ kernel-lts2018/security/smack/smack_lsm.c +@@ -309,29 +309,20 @@ static struct inode_smack *new_inode_sma } /** @@ -621,7 +622,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 } /** -@@ -1958,14 +1949,7 @@ static int smack_file_open(struct file *file) +@@ -1965,14 +1956,7 @@ static int smack_file_open(struct file * */ static int smack_cred_alloc_blank(struct cred *cred, gfp_t gfp) { @@ -637,7 +638,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 return 0; } -@@ -1982,10 +1966,6 @@ static void smack_cred_free(struct cred *cred) +@@ -1989,10 +1973,6 @@ static void smack_cred_free(struct cred struct list_head *l; struct list_head *n; @@ -648,7 +649,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 smk_destroy_label_list(&tsp->smk_relabel); list_for_each_safe(l, n, &tsp->smk_rules) { -@@ -1993,7 +1973,6 @@ static void smack_cred_free(struct cred *cred) +@@ -2000,7 +1980,6 @@ static void smack_cred_free(struct cred list_del(&rp->list); kfree(rp); } @@ -656,7 +657,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 } /** -@@ -2008,14 +1987,10 @@ static int smack_cred_prepare(struct cred *new, const struct cred *old, +@@ -2015,14 +1994,10 @@ static int smack_cred_prepare(struct cre gfp_t gfp) { struct task_smack *old_tsp = smack_cred(old); @@ -673,7 +674,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 rc = smk_copy_rules(&new_tsp->smk_rules, &old_tsp->smk_rules, gfp); if (rc != 0) -@@ -2023,10 +1998,7 @@ static int smack_cred_prepare(struct cred *new, const struct cred *old, +@@ -2030,10 +2005,7 @@ static int smack_cred_prepare(struct cre rc = smk_copy_relabel(&new_tsp->smk_relabel, &old_tsp->smk_relabel, gfp); @@ -685,7 +686,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 } /** -@@ -4652,6 +4624,10 @@ static int smack_dentry_create_files_as(struct dentry *dentry, int mode, +@@ -4659,6 +4631,10 @@ static int smack_dentry_create_files_as( return 0; } @@ -696,7 +697,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 static struct security_hook_list smack_hooks[] __lsm_ro_after_init = { LSM_HOOK_INIT(ptrace_access_check, smack_ptrace_access_check), LSM_HOOK_INIT(ptrace_traceme, smack_ptrace_traceme), -@@ -4830,23 +4806,35 @@ static __init void init_smack_known_list(void) +@@ -4837,23 +4813,35 @@ static __init void init_smack_known_list */ static __init int smack_init(void) { @@ -739,7 +740,7 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 smack_enabled = 1; pr_info("Smack: Initializing.\n"); -@@ -4860,20 +4848,9 @@ static __init int smack_init(void) +@@ -4867,20 +4855,9 @@ static __init int smack_init(void) pr_info("Smack: IPv6 Netfilter enabled.\n"); #endif @@ -760,10 +761,10 @@ index 68ee3ae8f25c..a06ea8aa89c4 100644 return 0; } -diff --git a/security/tomoyo/common.h b/security/tomoyo/common.h -index 539bcdd30bb8..0110bebe86e2 100644 ---- a/security/tomoyo/common.h -+++ b/security/tomoyo/common.h +Index: kernel-lts2018/security/tomoyo/common.h +=================================================================== +--- kernel-lts2018.orig/security/tomoyo/common.h ++++ kernel-lts2018/security/tomoyo/common.h @@ -29,6 +29,7 @@ #include #include @@ -772,7 +773,7 @@ index 539bcdd30bb8..0110bebe86e2 100644 #include #include #include -@@ -1062,6 +1063,7 @@ void tomoyo_write_log2(struct tomoyo_request_info *r, int len, const char *fmt, +@@ -1062,6 +1063,7 @@ void tomoyo_write_log2(struct tomoyo_req /********** External variable definitions. **********/ extern bool tomoyo_policy_loaded; @@ -780,11 +781,10 @@ index 539bcdd30bb8..0110bebe86e2 100644 extern const char * const tomoyo_condition_keyword [TOMOYO_MAX_CONDITION_KEYWORD]; extern const char * const tomoyo_dif[TOMOYO_MAX_DOMAIN_INFO_FLAGS]; -@@ -1196,6 +1198,17 @@ static inline void tomoyo_put_group(struct tomoyo_group *group) - atomic_dec(&group->head.users); +@@ -1197,13 +1199,26 @@ static inline void tomoyo_put_group(stru } -+/** + /** + * tomoyo_cred - Get a pointer to the tomoyo cred security blob + * @cred - the relevant cred + * @@ -795,10 +795,10 @@ index 539bcdd30bb8..0110bebe86e2 100644 + return cred->security; +} + - /** ++/** * tomoyo_domain - Get "struct tomoyo_domain_info" for current thread. * -@@ -1203,7 +1216,9 @@ static inline void tomoyo_put_group(struct tomoyo_group *group) + * Returns pointer to "struct tomoyo_domain_info" for current thread. */ static inline struct tomoyo_domain_info *tomoyo_domain(void) { @@ -809,7 +809,7 @@ index 539bcdd30bb8..0110bebe86e2 100644 } /** -@@ -1216,7 +1231,9 @@ static inline struct tomoyo_domain_info *tomoyo_domain(void) +@@ -1216,7 +1231,9 @@ static inline struct tomoyo_domain_info static inline struct tomoyo_domain_info *tomoyo_real_domain(struct task_struct *task) { @@ -820,11 +820,11 @@ index 539bcdd30bb8..0110bebe86e2 100644 } /** -diff --git a/security/tomoyo/domain.c b/security/tomoyo/domain.c -index f6758dad981f..b7469fdbff01 100644 ---- a/security/tomoyo/domain.c -+++ b/security/tomoyo/domain.c -@@ -678,6 +678,7 @@ static int tomoyo_environ(struct tomoyo_execve *ee) +Index: kernel-lts2018/security/tomoyo/domain.c +=================================================================== +--- kernel-lts2018.orig/security/tomoyo/domain.c ++++ kernel-lts2018/security/tomoyo/domain.c +@@ -678,6 +678,7 @@ out: */ int tomoyo_find_next_domain(struct linux_binprm *bprm) { @@ -832,7 +832,7 @@ index f6758dad981f..b7469fdbff01 100644 struct tomoyo_domain_info *old_domain = tomoyo_domain(); struct tomoyo_domain_info *domain = NULL; const char *original_name = bprm->filename; -@@ -843,7 +844,8 @@ int tomoyo_find_next_domain(struct linux_binprm *bprm) +@@ -843,7 +844,8 @@ force_jump_domain: domain = old_domain; /* Update reference count on "struct tomoyo_domain_info". */ atomic_inc(&domain->users); @@ -842,11 +842,11 @@ index f6758dad981f..b7469fdbff01 100644 kfree(exename.name); if (!retval) { ee->r.domain = domain; -diff --git a/security/tomoyo/securityfs_if.c b/security/tomoyo/securityfs_if.c -index 1d3d7e7a1f05..768dff9608b1 100644 ---- a/security/tomoyo/securityfs_if.c -+++ b/security/tomoyo/securityfs_if.c -@@ -71,9 +71,12 @@ static ssize_t tomoyo_write_self(struct file *file, const char __user *buf, +Index: kernel-lts2018/security/tomoyo/securityfs_if.c +=================================================================== +--- kernel-lts2018.orig/security/tomoyo/securityfs_if.c ++++ kernel-lts2018/security/tomoyo/securityfs_if.c +@@ -71,9 +71,12 @@ static ssize_t tomoyo_write_self(struct if (!cred) { error = -ENOMEM; } else { @@ -862,7 +862,7 @@ index 1d3d7e7a1f05..768dff9608b1 100644 atomic_inc(&new_domain->users); atomic_dec(&old_domain->users); commit_creds(cred); -@@ -234,10 +237,14 @@ static void __init tomoyo_create_entry(const char *name, const umode_t mode, +@@ -234,10 +237,14 @@ static void __init tomoyo_create_entry(c */ static int __init tomoyo_initerface_init(void) { @@ -878,10 +878,10 @@ index 1d3d7e7a1f05..768dff9608b1 100644 return 0; tomoyo_dir = securityfs_create_dir("tomoyo", NULL); -diff --git a/security/tomoyo/tomoyo.c b/security/tomoyo/tomoyo.c -index 9f932e2d6852..bb84e6ec3886 100644 ---- a/security/tomoyo/tomoyo.c -+++ b/security/tomoyo/tomoyo.c +Index: kernel-lts2018/security/tomoyo/tomoyo.c +=================================================================== +--- kernel-lts2018.orig/security/tomoyo/tomoyo.c ++++ kernel-lts2018/security/tomoyo/tomoyo.c @@ -18,7 +18,9 @@ */ static int tomoyo_cred_alloc_blank(struct cred *new, gfp_t gfp) @@ -893,7 +893,7 @@ index 9f932e2d6852..bb84e6ec3886 100644 return 0; } -@@ -34,8 +36,13 @@ static int tomoyo_cred_alloc_blank(struct cred *new, gfp_t gfp) +@@ -34,8 +36,13 @@ static int tomoyo_cred_alloc_blank(struc static int tomoyo_cred_prepare(struct cred *new, const struct cred *old, gfp_t gfp) { @@ -909,7 +909,7 @@ index 9f932e2d6852..bb84e6ec3886 100644 if (domain) atomic_inc(&domain->users); return 0; -@@ -59,7 +66,9 @@ static void tomoyo_cred_transfer(struct cred *new, const struct cred *old) +@@ -59,7 +66,9 @@ static void tomoyo_cred_transfer(struct */ static void tomoyo_cred_free(struct cred *cred) { @@ -920,7 +920,7 @@ index 9f932e2d6852..bb84e6ec3886 100644 if (domain) atomic_dec(&domain->users); } -@@ -73,6 +82,9 @@ static void tomoyo_cred_free(struct cred *cred) +@@ -73,6 +82,9 @@ static void tomoyo_cred_free(struct cred */ static int tomoyo_bprm_set_creds(struct linux_binprm *bprm) { @@ -930,7 +930,7 @@ index 9f932e2d6852..bb84e6ec3886 100644 /* * Do only if this function is called for the first time of an execve * operation. -@@ -93,13 +105,14 @@ static int tomoyo_bprm_set_creds(struct linux_binprm *bprm) +@@ -93,13 +105,14 @@ static int tomoyo_bprm_set_creds(struct * stored inside "bprm->cred->security" will be acquired later inside * tomoyo_find_next_domain(). */ @@ -948,7 +948,7 @@ index 9f932e2d6852..bb84e6ec3886 100644 return 0; } -@@ -112,8 +125,11 @@ static int tomoyo_bprm_set_creds(struct linux_binprm *bprm) +@@ -112,8 +125,11 @@ static int tomoyo_bprm_set_creds(struct */ static int tomoyo_bprm_check_security(struct linux_binprm *bprm) { @@ -961,7 +961,7 @@ index 9f932e2d6852..bb84e6ec3886 100644 /* * Execute permission is checked against pathname passed to do_execve() * using current domain. -@@ -493,6 +509,10 @@ static int tomoyo_socket_sendmsg(struct socket *sock, struct msghdr *msg, +@@ -493,6 +509,10 @@ static int tomoyo_socket_sendmsg(struct return tomoyo_socket_sendmsg_permission(sock, msg, size); } @@ -972,7 +972,7 @@ index 9f932e2d6852..bb84e6ec3886 100644 /* * tomoyo_security_ops is a "struct security_operations" which is used for * registering TOMOYO. -@@ -531,6 +551,8 @@ static struct security_hook_list tomoyo_hooks[] __lsm_ro_after_init = { +@@ -531,6 +551,8 @@ static struct security_hook_list tomoyo_ /* Lock for GC. */ DEFINE_SRCU(tomoyo_ss); @@ -1012,6 +1012,3 @@ index 9f932e2d6852..bb84e6ec3886 100644 tomoyo_mm_init(); return 0; } --- -2.19.1 - diff --git a/0113-tpm-tpm_try_transmit-refactor-error-flow.patch b/0113-tpm-tpm_try_transmit-refactor-error-flow.patch deleted file mode 100644 index b6e561b9..00000000 --- a/0113-tpm-tpm_try_transmit-refactor-error-flow.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 6b6f5442b66c3e8f002810f33cf7ed446bca0cfa Mon Sep 17 00:00:00 2001 -From: Tomas Winkler -Date: Mon, 15 Oct 2018 14:03:26 +0300 -Subject: [PATCH 37/97] tpm: tpm_try_transmit() refactor error flow. - -First, rename out_no_locality to out_locality for bailing out on -both tpm_cmd_ready() and tpm_request_locality() failure. -Second, ignore the return value of go_to_idle() as it may override -the return value of the actual tpm operation, the go_to_idle() error -will be caught on any consequent command. -Last, fix the wrong 'goto out', that jumped back instead of forward. - -Change-Id: Id7258267830705661f51ed6213b8405fc2d9ec77 -Cc: stable@vger.kernel.org -Fixes: 627448e85c76 ("tpm: separate cmd_ready/go_idle from runtime_pm") -Signed-off-by: Tomas Winkler ---- - drivers/char/tpm/tpm-interface.c | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -diff --git a/drivers/char/tpm/tpm-interface.c b/drivers/char/tpm/tpm-interface.c -index 129f640424b7..95db630dd722 100644 ---- a/drivers/char/tpm/tpm-interface.c -+++ b/drivers/char/tpm/tpm-interface.c -@@ -477,13 +477,15 @@ static ssize_t tpm_try_transmit(struct tpm_chip *chip, - - if (need_locality) { - rc = tpm_request_locality(chip, flags); -- if (rc < 0) -- goto out_no_locality; -+ if (rc < 0) { -+ need_locality = false; -+ goto out_locality; -+ } - } - - rc = tpm_cmd_ready(chip, flags); - if (rc) -- goto out; -+ goto out_locality; - - rc = tpm2_prepare_space(chip, space, ordinal, buf); - if (rc) -@@ -547,14 +549,13 @@ static ssize_t tpm_try_transmit(struct tpm_chip *chip, - dev_err(&chip->dev, "tpm2_commit_space: error %d\n", rc); - - out: -- rc = tpm_go_idle(chip, flags); -- if (rc) -- goto out; -+ /* may fail but do not override previous error value in rc */ -+ tpm_go_idle(chip, flags); - -+out_locality: - if (need_locality) - tpm_relinquish_locality(chip, flags); - --out_no_locality: - if (chip->ops->clk_enable != NULL) - chip->ops->clk_enable(chip, false); - --- -2.19.1 - diff --git a/0115-tpm2-add-new-tpm2-commands-according-to-TC.patch b/0113-tpm2-add-new-tpm2-commands-according-to-TC.patch similarity index 100% rename from 0115-tpm2-add-new-tpm2-commands-according-to-TC.patch rename to 0113-tpm2-add-new-tpm2-commands-according-to-TC.patch diff --git a/0116-tpm-sort-objects-in-the-Makefile.patch b/0114-tpm-sort-objects-in-the-Makefile.patch similarity index 100% rename from 0116-tpm-sort-objects-in-the-Makefile.patch rename to 0114-tpm-sort-objects-in-the-Makefile.patch diff --git a/0114-tpm-tpm_i2c_nuvoton-use-correct-command-du.patch b/0114-tpm-tpm_i2c_nuvoton-use-correct-command-du.patch deleted file mode 100644 index 0df80930..00000000 --- a/0114-tpm-tpm_i2c_nuvoton-use-correct-command-du.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 321108a27e95e79885db33946b685b0e74031ca1 Mon Sep 17 00:00:00 2001 -From: Tomas Winkler -Date: Wed, 17 Oct 2018 19:23:18 +0300 -Subject: [PATCH 38/97] tpm: tpm_i2c_nuvoton: use correct command duration for - TPM 2.x - -tpm_i2c_nuvoton calculated commands duration using TPM 1.x -values via tpm_calc_ordinal_duration() also for TPM 2.x chips. -Call tpm2_calc_ordinal_duration() for retrieving ordinal -duration for TPM 2.X chips. - -Change-Id: If979415a7e21daad80c02b08e66ce652d0bc2b6c -Cc: Nayna Jain -Signed-off-by: Tomas Winkler -Reviewed-by: Nayna Jain -Tested-by: Nayna Jain (For TPM 2.0) ---- - drivers/char/tpm/tpm_i2c_nuvoton.c | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - -diff --git a/drivers/char/tpm/tpm_i2c_nuvoton.c b/drivers/char/tpm/tpm_i2c_nuvoton.c -index caa86b19c76d..f74f451baf6a 100644 ---- a/drivers/char/tpm/tpm_i2c_nuvoton.c -+++ b/drivers/char/tpm/tpm_i2c_nuvoton.c -@@ -369,6 +369,7 @@ static int i2c_nuvoton_send(struct tpm_chip *chip, u8 *buf, size_t len) - struct device *dev = chip->dev.parent; - struct i2c_client *client = to_i2c_client(dev); - u32 ordinal; -+ unsigned long duration; - size_t count = 0; - int burst_count, bytes2write, retries, rc = -EIO; - -@@ -455,10 +456,12 @@ static int i2c_nuvoton_send(struct tpm_chip *chip, u8 *buf, size_t len) - return rc; - } - ordinal = be32_to_cpu(*((__be32 *) (buf + 6))); -- rc = i2c_nuvoton_wait_for_data_avail(chip, -- tpm_calc_ordinal_duration(chip, -- ordinal), -- &priv->read_queue); -+ if (chip->flags & TPM_CHIP_FLAG_TPM2) -+ duration = tpm2_calc_ordinal_duration(chip, ordinal); -+ else -+ duration = tpm_calc_ordinal_duration(chip, ordinal); -+ -+ rc = i2c_nuvoton_wait_for_data_avail(chip, duration, &priv->read_queue); - if (rc) { - dev_err(dev, "%s() timeout command duration\n", __func__); - i2c_nuvoton_ready(chip); --- -2.19.1 - diff --git a/0117-tpm-factor-out-tpm-1.x-duration-calculatio.patch b/0115-tpm-factor-out-tpm-1.x-duration-calculatio.patch similarity index 100% rename from 0117-tpm-factor-out-tpm-1.x-duration-calculatio.patch rename to 0115-tpm-factor-out-tpm-1.x-duration-calculatio.patch diff --git a/0118-tpm-add-tpm_calc_ordinal_duration-wrapper.patch b/0116-tpm-add-tpm_calc_ordinal_duration-wrapper.patch similarity index 100% rename from 0118-tpm-add-tpm_calc_ordinal_duration-wrapper.patch rename to 0116-tpm-add-tpm_calc_ordinal_duration-wrapper.patch diff --git a/0119-tpm-factor-out-tpm_get_timeouts.patch b/0117-tpm-factor-out-tpm_get_timeouts.patch similarity index 100% rename from 0119-tpm-factor-out-tpm_get_timeouts.patch rename to 0117-tpm-factor-out-tpm_get_timeouts.patch diff --git a/0120-tpm-move-tpm1_pcr_extend-to-tpm1-cmd.c.patch b/0118-tpm-move-tpm1_pcr_extend-to-tpm1-cmd.c.patch similarity index 100% rename from 0120-tpm-move-tpm1_pcr_extend-to-tpm1-cmd.c.patch rename to 0118-tpm-move-tpm1_pcr_extend-to-tpm1-cmd.c.patch diff --git a/0121-tpm-move-tpm_getcap-to-tpm1-cmd.c.patch b/0119-tpm-move-tpm_getcap-to-tpm1-cmd.c.patch similarity index 100% rename from 0121-tpm-move-tpm_getcap-to-tpm1-cmd.c.patch rename to 0119-tpm-move-tpm_getcap-to-tpm1-cmd.c.patch diff --git a/0122-tpm-factor-out-tpm1_get_random-into-tpm1-c.patch b/0120-tpm-factor-out-tpm1_get_random-into-tpm1-c.patch similarity index 100% rename from 0122-tpm-factor-out-tpm1_get_random-into-tpm1-c.patch rename to 0120-tpm-factor-out-tpm1_get_random-into-tpm1-c.patch diff --git a/0123-tpm-move-tpm-1.x-selftest-code-from-tpm-in.patch b/0121-tpm-move-tpm-1.x-selftest-code-from-tpm-in.patch similarity index 100% rename from 0123-tpm-move-tpm-1.x-selftest-code-from-tpm-in.patch rename to 0121-tpm-move-tpm-1.x-selftest-code-from-tpm-in.patch diff --git a/0124-tpm-factor-out-tpm-1.x-pm-suspend-flow-int.patch b/0122-tpm-factor-out-tpm-1.x-pm-suspend-flow-int.patch similarity index 100% rename from 0124-tpm-factor-out-tpm-1.x-pm-suspend-flow-int.patch rename to 0122-tpm-factor-out-tpm-1.x-pm-suspend-flow-int.patch diff --git a/0125-tpm-factor-out-tpm_startup-function.patch b/0123-tpm-factor-out-tpm_startup-function.patch similarity index 100% rename from 0125-tpm-factor-out-tpm_startup-function.patch rename to 0123-tpm-factor-out-tpm_startup-function.patch diff --git a/0126-tpm-add-tpm_auto_startup-into-tpm-interfac.patch b/0124-tpm-add-tpm_auto_startup-into-tpm-interfac.patch similarity index 100% rename from 0126-tpm-add-tpm_auto_startup-into-tpm-interfac.patch rename to 0124-tpm-add-tpm_auto_startup-into-tpm-interfac.patch diff --git a/0127-tpm-tpm-interface.c-drop-unused-macros.patch b/0125-tpm-tpm-interface.c-drop-unused-macros.patch similarity index 100% rename from 0127-tpm-tpm-interface.c-drop-unused-macros.patch rename to 0125-tpm-tpm-interface.c-drop-unused-macros.patch diff --git a/0128-tpm-tpm-space.c-remove-unneeded-semicolon.patch b/0126-tpm-tpm-space.c-remove-unneeded-semicolon.patch similarity index 100% rename from 0128-tpm-tpm-space.c-remove-unneeded-semicolon.patch rename to 0126-tpm-tpm-space.c-remove-unneeded-semicolon.patch diff --git a/0129-tpm-tpm1-rewrite-tpm1_get_random-using-tpm.patch b/0127-tpm-tpm1-rewrite-tpm1_get_random-using-tpm.patch similarity index 100% rename from 0129-tpm-tpm1-rewrite-tpm1_get_random-using-tpm.patch rename to 0127-tpm-tpm1-rewrite-tpm1_get_random-using-tpm.patch diff --git a/0130-tpm1-implement-tpm1_pcr_read_dev-using-tpm.patch b/0128-tpm1-implement-tpm1_pcr_read_dev-using-tpm.patch similarity index 100% rename from 0130-tpm1-implement-tpm1_pcr_read_dev-using-tpm.patch rename to 0128-tpm1-implement-tpm1_pcr_read_dev-using-tpm.patch diff --git a/0131-tmp1-rename-tpm1_pcr_read_dev-to-tpm1_pcr_.patch b/0129-tmp1-rename-tpm1_pcr_read_dev-to-tpm1_pcr_.patch similarity index 100% rename from 0131-tmp1-rename-tpm1_pcr_read_dev-to-tpm1_pcr_.patch rename to 0129-tmp1-rename-tpm1_pcr_read_dev-to-tpm1_pcr_.patch diff --git a/0132-tpm1-reimplement-SAVESTATE-using-tpm_buf.patch b/0130-tpm1-reimplement-SAVESTATE-using-tpm_buf.patch similarity index 100% rename from 0132-tpm1-reimplement-SAVESTATE-using-tpm_buf.patch rename to 0130-tpm1-reimplement-SAVESTATE-using-tpm_buf.patch diff --git a/0133-tpm1-reimplement-tpm1_continue_selftest-us.patch b/0131-tpm1-reimplement-tpm1_continue_selftest-us.patch similarity index 100% rename from 0133-tpm1-reimplement-tpm1_continue_selftest-us.patch rename to 0131-tpm1-reimplement-tpm1_continue_selftest-us.patch diff --git a/0134-tpm-use-u32-instead-of-int-for-PCR-index.patch b/0132-tpm-use-u32-instead-of-int-for-PCR-index.patch similarity index 100% rename from 0134-tpm-use-u32-instead-of-int-for-PCR-index.patch rename to 0132-tpm-use-u32-instead-of-int-for-PCR-index.patch diff --git a/0135-tpm-fix-kdoc-for-tpm2_flush_context_cmd.patch b/0133-tpm-fix-kdoc-for-tpm2_flush_context_cmd.patch similarity index 100% rename from 0135-tpm-fix-kdoc-for-tpm2_flush_context_cmd.patch rename to 0133-tpm-fix-kdoc-for-tpm2_flush_context_cmd.patch diff --git a/0136-misc-remove-redundant-include-moduleparam..patch b/0134-misc-remove-redundant-include-moduleparam..patch similarity index 100% rename from 0136-misc-remove-redundant-include-moduleparam..patch rename to 0134-misc-remove-redundant-include-moduleparam..patch diff --git a/0137-mei-replace-POLL-with-EPOLL-for-write-queu.patch b/0135-mei-replace-POLL-with-EPOLL-for-write-queu.patch similarity index 100% rename from 0137-mei-replace-POLL-with-EPOLL-for-write-queu.patch rename to 0135-mei-replace-POLL-with-EPOLL-for-write-queu.patch diff --git a/0138-mei-hbm-drop-BUG-from-the-hbm-handler.patch b/0136-mei-hbm-drop-BUG-from-the-hbm-handler.patch similarity index 100% rename from 0138-mei-hbm-drop-BUG-from-the-hbm-handler.patch rename to 0136-mei-hbm-drop-BUG-from-the-hbm-handler.patch diff --git a/0139-mei-flush-queues-by-the-host-client-only.patch b/0137-mei-flush-queues-by-the-host-client-only.patch similarity index 100% rename from 0139-mei-flush-queues-by-the-host-client-only.patch rename to 0137-mei-flush-queues-by-the-host-client-only.patch diff --git a/0140-mei-bus-export-to_mei_cl_device-for-mei-cl.patch b/0138-mei-bus-export-to_mei_cl_device-for-mei-cl.patch similarity index 100% rename from 0140-mei-bus-export-to_mei_cl_device-for-mei-cl.patch rename to 0138-mei-bus-export-to_mei_cl_device-for-mei-cl.patch diff --git a/0141-mei-expedite-ioctl-return-on-the-notify-se.patch b/0139-mei-expedite-ioctl-return-on-the-notify-se.patch similarity index 100% rename from 0141-mei-expedite-ioctl-return-on-the-notify-se.patch rename to 0139-mei-expedite-ioctl-return-on-the-notify-se.patch diff --git a/0142-mei-dma-ring-buffers-allocation.patch b/0140-mei-dma-ring-buffers-allocation.patch similarity index 100% rename from 0142-mei-dma-ring-buffers-allocation.patch rename to 0140-mei-dma-ring-buffers-allocation.patch diff --git a/0143-mei-hbm-setup-dma-ring.patch b/0141-mei-hbm-setup-dma-ring.patch similarity index 100% rename from 0143-mei-hbm-setup-dma-ring.patch rename to 0141-mei-hbm-setup-dma-ring.patch diff --git a/0144-mei-hw-add-dma-ring-control-block.patch b/0142-mei-hw-add-dma-ring-control-block.patch similarity index 100% rename from 0144-mei-hw-add-dma-ring-control-block.patch rename to 0142-mei-hw-add-dma-ring-control-block.patch diff --git a/0145-mei-dma-ring-implement-rx-circular-buffer-.patch b/0143-mei-dma-ring-implement-rx-circular-buffer-.patch similarity index 100% rename from 0145-mei-dma-ring-implement-rx-circular-buffer-.patch rename to 0143-mei-dma-ring-implement-rx-circular-buffer-.patch diff --git a/0146-mei-dma-ring-implement-transmit-flow.patch b/0144-mei-dma-ring-implement-transmit-flow.patch similarity index 100% rename from 0146-mei-dma-ring-implement-transmit-flow.patch rename to 0144-mei-dma-ring-implement-transmit-flow.patch diff --git a/0147-mei-bump-hbm-version-to-2.1.patch b/0145-mei-bump-hbm-version-to-2.1.patch similarity index 100% rename from 0147-mei-bump-hbm-version-to-2.1.patch rename to 0145-mei-bump-hbm-version-to-2.1.patch diff --git a/0148-mei-me-mark-CNP-devices-as-having-dma-supp.patch b/0146-mei-me-mark-CNP-devices-as-having-dma-supp.patch similarity index 100% rename from 0148-mei-me-mark-CNP-devices-as-having-dma-supp.patch rename to 0146-mei-me-mark-CNP-devices-as-having-dma-supp.patch diff --git a/0149-mei-squash-single_recv_buf-into-one-bit-in.patch b/0147-mei-squash-single_recv_buf-into-one-bit-in.patch similarity index 100% rename from 0149-mei-squash-single_recv_buf-into-one-bit-in.patch rename to 0147-mei-squash-single_recv_buf-into-one-bit-in.patch diff --git a/0150-mei-restrict-vm-tag-support-to-hbm-version.patch b/0148-mei-restrict-vm-tag-support-to-hbm-version.patch similarity index 100% rename from 0150-mei-restrict-vm-tag-support-to-hbm-version.patch rename to 0148-mei-restrict-vm-tag-support-to-hbm-version.patch diff --git a/0151-mei-hbm-add-capabilities-message.patch b/0149-mei-hbm-add-capabilities-message.patch similarity index 100% rename from 0151-mei-hbm-add-capabilities-message.patch rename to 0149-mei-hbm-add-capabilities-message.patch diff --git a/0152-mei-add-extended-header.patch b/0150-mei-add-extended-header.patch similarity index 100% rename from 0152-mei-add-extended-header.patch rename to 0150-mei-add-extended-header.patch diff --git a/0153-mei-add-vtag-support-bit-in-client-propert.patch b/0151-mei-add-vtag-support-bit-in-client-propert.patch similarity index 100% rename from 0153-mei-add-vtag-support-bit-in-client-propert.patch rename to 0151-mei-add-vtag-support-bit-in-client-propert.patch diff --git a/0154-mei-bump-hbm-version-to-2.2.patch b/0152-mei-bump-hbm-version-to-2.2.patch similarity index 100% rename from 0154-mei-bump-hbm-version-to-2.2.patch rename to 0152-mei-bump-hbm-version-to-2.2.patch diff --git a/0155-mei-add-a-spin-lock-to-protect-rd_complete.patch b/0153-mei-add-a-spin-lock-to-protect-rd_complete.patch similarity index 100% rename from 0155-mei-add-a-spin-lock-to-protect-rd_complete.patch rename to 0153-mei-add-a-spin-lock-to-protect-rd_complete.patch diff --git a/0156-mei-add-connect-with-vtag-ioctl.patch b/0154-mei-add-connect-with-vtag-ioctl.patch similarity index 100% rename from 0156-mei-add-connect-with-vtag-ioctl.patch rename to 0154-mei-add-connect-with-vtag-ioctl.patch diff --git a/0157-mei-keep-pending-read-on-one-client-discon.patch b/0155-mei-keep-pending-read-on-one-client-discon.patch similarity index 100% rename from 0157-mei-keep-pending-read-on-one-client-discon.patch rename to 0155-mei-keep-pending-read-on-one-client-discon.patch diff --git a/0158-mei-flush-only-objects-belonging-to-fp-in-.patch b/0156-mei-flush-only-objects-belonging-to-fp-in-.patch similarity index 100% rename from 0158-mei-flush-only-objects-belonging-to-fp-in-.patch rename to 0156-mei-flush-only-objects-belonging-to-fp-in-.patch diff --git a/0159-mei-free-read-cb-on-ctrl_wr-list-flush.patch b/0157-mei-free-read-cb-on-ctrl_wr-list-flush.patch similarity index 100% rename from 0159-mei-free-read-cb-on-ctrl_wr-list-flush.patch rename to 0157-mei-free-read-cb-on-ctrl_wr-list-flush.patch diff --git a/0160-mei-bus-use-zero-vtag-for-bus-clients.patch b/0158-mei-bus-use-zero-vtag-for-bus-clients.patch similarity index 100% rename from 0160-mei-bus-use-zero-vtag-for-bus-clients.patch rename to 0158-mei-bus-use-zero-vtag-for-bus-clients.patch diff --git a/0161-mei-expose-device-state-in-sysfs.patch b/0159-mei-expose-device-state-in-sysfs.patch similarity index 100% rename from 0161-mei-expose-device-state-in-sysfs.patch rename to 0159-mei-expose-device-state-in-sysfs.patch diff --git a/0162-mei-bus-add-more-client-attributes-to-sysf.patch b/0160-mei-bus-add-more-client-attributes-to-sysf.patch similarity index 100% rename from 0162-mei-bus-add-more-client-attributes-to-sysf.patch rename to 0160-mei-bus-add-more-client-attributes-to-sysf.patch diff --git a/0163-mei-bus-unconditionally-enable-clients-wit.patch b/0161-mei-bus-unconditionally-enable-clients-wit.patch similarity index 100% rename from 0163-mei-bus-unconditionally-enable-clients-wit.patch rename to 0161-mei-bus-unconditionally-enable-clients-wit.patch diff --git a/0164-mei-virtio-V13-virtualization-frontend-dri.patch b/0162-mei-virtio-V13-virtualization-frontend-dri.patch similarity index 100% rename from 0164-mei-virtio-V13-virtualization-frontend-dri.patch rename to 0162-mei-virtio-V13-virtualization-frontend-dri.patch diff --git a/0165-mei-dal-add-acp-parser-code.patch b/0163-mei-dal-add-acp-parser-code.patch similarity index 100% rename from 0165-mei-dal-add-acp-parser-code.patch rename to 0163-mei-dal-add-acp-parser-code.patch diff --git a/0166-mei-dal-add-bh-plugin-code.patch b/0164-mei-dal-add-bh-plugin-code.patch similarity index 100% rename from 0166-mei-dal-add-bh-plugin-code.patch rename to 0164-mei-dal-add-bh-plugin-code.patch diff --git a/0167-mei-dal-dynamic-application-loader.patch b/0165-mei-dal-dynamic-application-loader.patch similarity index 100% rename from 0167-mei-dal-dynamic-application-loader.patch rename to 0165-mei-dal-dynamic-application-loader.patch diff --git a/0168-mei-dal-add-character-device-for-user-spac.patch b/0166-mei-dal-add-character-device-for-user-spac.patch similarity index 100% rename from 0168-mei-dal-add-character-device-for-user-spac.patch rename to 0166-mei-dal-add-character-device-for-user-spac.patch diff --git a/0169-mei-dal-add-kernel-space-interface.patch b/0167-mei-dal-add-kernel-space-interface.patch similarity index 100% rename from 0169-mei-dal-add-kernel-space-interface.patch rename to 0167-mei-dal-add-kernel-space-interface.patch diff --git a/0170-mei-dal-add-exclusive-access-menagement.patch b/0168-mei-dal-add-exclusive-access-menagement.patch similarity index 100% rename from 0170-mei-dal-add-exclusive-access-menagement.patch rename to 0168-mei-dal-add-exclusive-access-menagement.patch diff --git a/0171-mei-dal-add-module-Documentation.patch b/0169-mei-dal-add-module-Documentation.patch similarity index 100% rename from 0171-mei-dal-add-module-Documentation.patch rename to 0169-mei-dal-add-module-Documentation.patch diff --git a/0172-mei-dal-add-test-module.patch b/0170-mei-dal-add-test-module.patch similarity index 100% rename from 0172-mei-dal-add-test-module.patch rename to 0170-mei-dal-add-test-module.patch diff --git a/0173-security-add-keystore-driver-support.patch b/0171-security-add-keystore-driver-support.patch similarity index 100% rename from 0173-security-add-keystore-driver-support.patch rename to 0171-security-add-keystore-driver-support.patch diff --git a/0174-ACPI-battery-use-cache_time-as-cache-enabled.patch b/0172-ACPI-battery-use-cache_time-as-cache-enabled.patch similarity index 100% rename from 0174-ACPI-battery-use-cache_time-as-cache-enabled.patch rename to 0172-ACPI-battery-use-cache_time-as-cache-enabled.patch diff --git a/0175-FOR-CNL-FPGA-Add-support-for-CNL-FPGA.patch b/0173-FOR-CNL-FPGA-Add-support-for-CNL-FPGA.patch similarity index 100% rename from 0175-FOR-CNL-FPGA-Add-support-for-CNL-FPGA.patch rename to 0173-FOR-CNL-FPGA-Add-support-for-CNL-FPGA.patch diff --git a/0176-FOR-CNL-FPGA-Load-nhlt-from-firmware-instead-.patch b/0174-FOR-CNL-FPGA-Load-nhlt-from-firmware-instead-.patch similarity index 100% rename from 0176-FOR-CNL-FPGA-Load-nhlt-from-firmware-instead-.patch rename to 0174-FOR-CNL-FPGA-Load-nhlt-from-firmware-instead-.patch diff --git a/0177-FOR-CNL-FPGA-Add-facility-to-load-ROM-via-deb.patch b/0175-FOR-CNL-FPGA-Add-facility-to-load-ROM-via-deb.patch similarity index 100% rename from 0177-FOR-CNL-FPGA-Add-facility-to-load-ROM-via-deb.patch rename to 0175-FOR-CNL-FPGA-Add-facility-to-load-ROM-via-deb.patch diff --git a/0178-FOR-CNL-FPGA-ASoC-mfd-Intel-changes-for-WM828.patch b/0176-FOR-CNL-FPGA-ASoC-mfd-Intel-changes-for-WM828.patch similarity index 100% rename from 0178-FOR-CNL-FPGA-ASoC-mfd-Intel-changes-for-WM828.patch rename to 0176-FOR-CNL-FPGA-ASoC-mfd-Intel-changes-for-WM828.patch diff --git a/0179-ASoC-Intel-Add-CNL-Machine-Driver-with-code-w.patch b/0177-ASoC-Intel-Add-CNL-Machine-Driver-with-code-w.patch similarity index 100% rename from 0179-ASoC-Intel-Add-CNL-Machine-Driver-with-code-w.patch rename to 0177-ASoC-Intel-Add-CNL-Machine-Driver-with-code-w.patch diff --git a/0180-FPGA-ASoC-rt274-Force-load-rt274-without-acpi.patch b/0178-FPGA-ASoC-rt274-Force-load-rt274-without-acpi.patch similarity index 100% rename from 0180-FPGA-ASoC-rt274-Force-load-rt274-without-acpi.patch rename to 0178-FPGA-ASoC-rt274-Force-load-rt274-without-acpi.patch diff --git a/0181-ASoC-HDA-EXT-Mark-dma-buffers-as-un-cacheble.patch b/0179-ASoC-HDA-EXT-Mark-dma-buffers-as-un-cacheble.patch similarity index 100% rename from 0181-ASoC-HDA-EXT-Mark-dma-buffers-as-un-cacheble.patch rename to 0179-ASoC-HDA-EXT-Mark-dma-buffers-as-un-cacheble.patch diff --git a/0182-ASoC-intel-skylake-mark-ring-buffer-as-non-ca.patch b/0180-ASoC-intel-skylake-mark-ring-buffer-as-non-ca.patch similarity index 100% rename from 0182-ASoC-intel-skylake-mark-ring-buffer-as-non-ca.patch rename to 0180-ASoC-intel-skylake-mark-ring-buffer-as-non-ca.patch diff --git a/0183-REVERTME-ASoC-Intel-CNL-Load-firmware-in-dsp_.patch b/0181-REVERTME-ASoC-Intel-CNL-Load-firmware-in-dsp_.patch similarity index 100% rename from 0183-REVERTME-ASoC-Intel-CNL-Load-firmware-in-dsp_.patch rename to 0181-REVERTME-ASoC-Intel-CNL-Load-firmware-in-dsp_.patch diff --git a/0184-ASoC-Intel-CNL-Add-library-loading-support.patch b/0182-ASoC-Intel-CNL-Add-library-loading-support.patch similarity index 100% rename from 0184-ASoC-Intel-CNL-Add-library-loading-support.patch rename to 0182-ASoC-Intel-CNL-Add-library-loading-support.patch diff --git a/0185-Soundwire-squashed-commits.patch b/0183-Soundwire-squashed-commits.patch similarity index 100% rename from 0185-Soundwire-squashed-commits.patch rename to 0183-Soundwire-squashed-commits.patch diff --git a/0186-ASoC-Add-dai_ops-to-set-the-stream-tag.patch b/0184-ASoC-Add-dai_ops-to-set-the-stream-tag.patch similarity index 100% rename from 0186-ASoC-Add-dai_ops-to-set-the-stream-tag.patch rename to 0184-ASoC-Add-dai_ops-to-set-the-stream-tag.patch diff --git a/0187-ASoC-CNL-Register-soundwire-controller-to-bus.patch b/0185-ASoC-CNL-Register-soundwire-controller-to-bus.patch similarity index 100% rename from 0187-ASoC-CNL-Register-soundwire-controller-to-bus.patch rename to 0185-ASoC-CNL-Register-soundwire-controller-to-bus.patch diff --git a/0188-ASoC-Intel-Add-support-for-SoundWire-link-in-.patch b/0186-ASoC-Intel-Add-support-for-SoundWire-link-in-.patch similarity index 100% rename from 0188-ASoC-Intel-Add-support-for-SoundWire-link-in-.patch rename to 0186-ASoC-Intel-Add-support-for-SoundWire-link-in-.patch diff --git a/0189-ASoC-Intel-Skylake-Interface-change-between-f.patch b/0187-ASoC-Intel-Skylake-Interface-change-between-f.patch similarity index 100% rename from 0189-ASoC-Intel-Skylake-Interface-change-between-f.patch rename to 0187-ASoC-Intel-Skylake-Interface-change-between-f.patch diff --git a/0190-ASoC-Intel-Add-support-to-bypass-NHLT-reading.patch b/0188-ASoC-Intel-Add-support-to-bypass-NHLT-reading.patch similarity index 100% rename from 0190-ASoC-Intel-Add-support-to-bypass-NHLT-reading.patch rename to 0188-ASoC-Intel-Add-support-to-bypass-NHLT-reading.patch diff --git a/0191-ASoC-Intel-Skylake-Add-support-for-the-SDW-da.patch b/0189-ASoC-Intel-Skylake-Add-support-for-the-SDW-da.patch similarity index 100% rename from 0191-ASoC-Intel-Skylake-Add-support-for-the-SDW-da.patch rename to 0189-ASoC-Intel-Skylake-Add-support-for-the-SDW-da.patch diff --git a/0192-ASoC-CNL-Add-SoundWire-machine-file.patch b/0190-ASoC-CNL-Add-SoundWire-machine-file.patch similarity index 100% rename from 0192-ASoC-CNL-Add-SoundWire-machine-file.patch rename to 0190-ASoC-CNL-Add-SoundWire-machine-file.patch diff --git a/0193-SoundWire-Intel-Register-4-master-controller-.patch b/0191-SoundWire-Intel-Register-4-master-controller-.patch similarity index 100% rename from 0193-SoundWire-Intel-Register-4-master-controller-.patch rename to 0191-SoundWire-Intel-Register-4-master-controller-.patch diff --git a/0194-REVERTME-SDW-CNL-Register-only-3-master-contr.patch b/0192-REVERTME-SDW-CNL-Register-only-3-master-contr.patch similarity index 100% rename from 0194-REVERTME-SDW-CNL-Register-only-3-master-contr.patch rename to 0192-REVERTME-SDW-CNL-Register-only-3-master-contr.patch diff --git a/0195-ASoC-CNL-Add-support-for-DMIC-link-in-SDW-mac.patch b/0193-ASoC-CNL-Add-support-for-DMIC-link-in-SDW-mac.patch similarity index 100% rename from 0195-ASoC-CNL-Add-support-for-DMIC-link-in-SDW-mac.patch rename to 0193-ASoC-CNL-Add-support-for-DMIC-link-in-SDW-mac.patch diff --git a/0196-ASoC-SKL-Add-DAI-for-the-SoundWire-PDM-interf.patch b/0194-ASoC-SKL-Add-DAI-for-the-SoundWire-PDM-interf.patch similarity index 100% rename from 0196-ASoC-SKL-Add-DAI-for-the-SoundWire-PDM-interf.patch rename to 0194-ASoC-SKL-Add-DAI-for-the-SoundWire-PDM-interf.patch diff --git a/0197-Intel-ASoc-Handle-SDW-PCM-hw_params-for-PDM.patch b/0195-Intel-ASoc-Handle-SDW-PCM-hw_params-for-PDM.patch similarity index 100% rename from 0197-Intel-ASoc-Handle-SDW-PCM-hw_params-for-PDM.patch rename to 0195-Intel-ASoc-Handle-SDW-PCM-hw_params-for-PDM.patch diff --git a/0198-ASoC-Codecs-Add-support-for-SV-FPGA-SoundWire.patch b/0196-ASoC-Codecs-Add-support-for-SV-FPGA-SoundWire.patch similarity index 100% rename from 0198-ASoC-Codecs-Add-support-for-SV-FPGA-SoundWire.patch rename to 0196-ASoC-Codecs-Add-support-for-SV-FPGA-SoundWire.patch diff --git a/0199-ASoC-Intel-Add-machine-driver-for-SoundWire-S.patch b/0197-ASoC-Intel-Add-machine-driver-for-SoundWire-S.patch similarity index 100% rename from 0199-ASoC-Intel-Add-machine-driver-for-SoundWire-S.patch rename to 0197-ASoC-Intel-Add-machine-driver-for-SoundWire-S.patch diff --git a/0200-REVERTME-SoundWire-Hardcoding-in-bus-driver-f.patch b/0198-REVERTME-SoundWire-Hardcoding-in-bus-driver-f.patch similarity index 100% rename from 0200-REVERTME-SoundWire-Hardcoding-in-bus-driver-f.patch rename to 0198-REVERTME-SoundWire-Hardcoding-in-bus-driver-f.patch diff --git a/0201-SDW-Intel-Fix-hardcoding-for-SVFPGA-codec.patch b/0199-SDW-Intel-Fix-hardcoding-for-SVFPGA-codec.patch similarity index 100% rename from 0201-SDW-Intel-Fix-hardcoding-for-SVFPGA-codec.patch rename to 0199-SDW-Intel-Fix-hardcoding-for-SVFPGA-codec.patch diff --git a/0202-REVERTME-SDW-Increment-the-dev_id-for-every-s.patch b/0200-REVERTME-SDW-Increment-the-dev_id-for-every-s.patch similarity index 100% rename from 0202-REVERTME-SDW-Increment-the-dev_id-for-every-s.patch rename to 0200-REVERTME-SDW-Increment-the-dev_id-for-every-s.patch diff --git a/0203-SDW-Support-async-messages-for-bus-driver.patch b/0201-SDW-Support-async-messages-for-bus-driver.patch similarity index 100% rename from 0203-SDW-Support-async-messages-for-bus-driver.patch rename to 0201-SDW-Support-async-messages-for-bus-driver.patch diff --git a/0204-SDW-Change-log-level-to-error-from-debug.patch b/0202-SDW-Change-log-level-to-error-from-debug.patch similarity index 100% rename from 0204-SDW-Change-log-level-to-error-from-debug.patch rename to 0202-SDW-Change-log-level-to-error-from-debug.patch diff --git a/0205-SDW-Intel-Enabled-the-Multimode-for-Intel-SDW.patch b/0203-SDW-Intel-Enabled-the-Multimode-for-Intel-SDW.patch similarity index 100% rename from 0205-SDW-Intel-Enabled-the-Multimode-for-Intel-SDW.patch rename to 0203-SDW-Intel-Enabled-the-Multimode-for-Intel-SDW.patch diff --git a/0206-SDW-Intel-Add-the-handler-for-async-message-t.patch b/0204-SDW-Intel-Add-the-handler-for-async-message-t.patch similarity index 100% rename from 0206-SDW-Intel-Add-the-handler-for-async-message-t.patch rename to 0204-SDW-Intel-Add-the-handler-for-async-message-t.patch diff --git a/0207-SDW-CNL-Fix-the-syncgo-functionality.patch b/0205-SDW-CNL-Fix-the-syncgo-functionality.patch similarity index 100% rename from 0207-SDW-CNL-Fix-the-syncgo-functionality.patch rename to 0205-SDW-CNL-Fix-the-syncgo-functionality.patch diff --git a/0208-SoundWire-Remove-dead-code-from-SoundWire-BW-.patch b/0206-SoundWire-Remove-dead-code-from-SoundWire-BW-.patch similarity index 100% rename from 0208-SoundWire-Remove-dead-code-from-SoundWire-BW-.patch rename to 0206-SoundWire-Remove-dead-code-from-SoundWire-BW-.patch diff --git a/0209-REVERTME-SDW-Skip-the-Slave-programming-for-t.patch b/0207-REVERTME-SDW-Skip-the-Slave-programming-for-t.patch similarity index 100% rename from 0209-REVERTME-SDW-Skip-the-Slave-programming-for-t.patch rename to 0207-REVERTME-SDW-Skip-the-Slave-programming-for-t.patch diff --git a/0210-SoundWire-Add-support-for-the-aggregation.patch b/0208-SoundWire-Add-support-for-the-aggregation.patch similarity index 100% rename from 0210-SoundWire-Add-support-for-the-aggregation.patch rename to 0208-SoundWire-Add-support-for-the-aggregation.patch diff --git a/0211-REVERTME-ASoC-CNL-Mark-SDW-master-1-and-2-as-.patch b/0209-REVERTME-ASoC-CNL-Mark-SDW-master-1-and-2-as-.patch similarity index 100% rename from 0211-REVERTME-ASoC-CNL-Mark-SDW-master-1-and-2-as-.patch rename to 0209-REVERTME-ASoC-CNL-Mark-SDW-master-1-and-2-as-.patch diff --git a/0212-ASoC-CNL-Update-capabilities-fields-of-SDW-ma.patch b/0210-ASoC-CNL-Update-capabilities-fields-of-SDW-ma.patch similarity index 100% rename from 0212-ASoC-CNL-Update-capabilities-fields-of-SDW-ma.patch rename to 0210-ASoC-CNL-Update-capabilities-fields-of-SDW-ma.patch diff --git a/0213-ASoC-CNL-Add-support-for-aggregated-gateways.patch b/0211-ASoC-CNL-Add-support-for-aggregated-gateways.patch similarity index 100% rename from 0213-ASoC-CNL-Add-support-for-aggregated-gateways.patch rename to 0211-ASoC-CNL-Add-support-for-aggregated-gateways.patch diff --git a/0214-ASoC-CNL-Add-DAIS-for-SoundWire-masters.patch b/0212-ASoC-CNL-Add-DAIS-for-SoundWire-masters.patch similarity index 100% rename from 0214-ASoC-CNL-Add-DAIS-for-SoundWire-masters.patch rename to 0212-ASoC-CNL-Add-DAIS-for-SoundWire-masters.patch diff --git a/0215-ASoC-core-Adds-support-for-DSP-loopback-dai-l.patch b/0213-ASoC-core-Adds-support-for-DSP-loopback-dai-l.patch similarity index 100% rename from 0215-ASoC-core-Adds-support-for-DSP-loopback-dai-l.patch rename to 0213-ASoC-core-Adds-support-for-DSP-loopback-dai-l.patch diff --git a/0216-WORKAROUND-ASoC-dapm-fix-stream-directions-fo.patch b/0214-WORKAROUND-ASoC-dapm-fix-stream-directions-fo.patch similarity index 100% rename from 0216-WORKAROUND-ASoC-dapm-fix-stream-directions-fo.patch rename to 0214-WORKAROUND-ASoC-dapm-fix-stream-directions-fo.patch diff --git a/0217-ASoC-utils-add-inputs-and-outputs-to-dummy-co.patch b/0215-ASoC-utils-add-inputs-and-outputs-to-dummy-co.patch similarity index 100% rename from 0217-ASoC-utils-add-inputs-and-outputs-to-dummy-co.patch rename to 0215-ASoC-utils-add-inputs-and-outputs-to-dummy-co.patch diff --git a/0218-ASoC-core-Do-not-return-for-dummy-codec-in-so.patch b/0216-ASoC-core-Do-not-return-for-dummy-codec-in-so.patch similarity index 100% rename from 0218-ASoC-core-Do-not-return-for-dummy-codec-in-so.patch rename to 0216-ASoC-core-Do-not-return-for-dummy-codec-in-so.patch diff --git a/0219-ASoC-SKL-Fix-ch_cfg-when-fixup-is-applied.patch b/0217-ASoC-SKL-Fix-ch_cfg-when-fixup-is-applied.patch similarity index 100% rename from 0219-ASoC-SKL-Fix-ch_cfg-when-fixup-is-applied.patch rename to 0217-ASoC-SKL-Fix-ch_cfg-when-fixup-is-applied.patch diff --git a/0220-ASoC-Intel-Skylake-Add-NHLT-override-control.patch b/0218-ASoC-Intel-Skylake-Add-NHLT-override-control.patch similarity index 100% rename from 0220-ASoC-Intel-Skylake-Add-NHLT-override-control.patch rename to 0218-ASoC-Intel-Skylake-Add-NHLT-override-control.patch diff --git a/0221-ASoC-Intel-Skylake-Add-debugfs-NHLT-ssp-overr.patch b/0219-ASoC-Intel-Skylake-Add-debugfs-NHLT-ssp-overr.patch similarity index 100% rename from 0221-ASoC-Intel-Skylake-Add-debugfs-NHLT-ssp-overr.patch rename to 0219-ASoC-Intel-Skylake-Add-debugfs-NHLT-ssp-overr.patch diff --git a/0222-ASoC-Intel-Skylake-Add-debugfs-NHLT-dmic-over.patch b/0220-ASoC-Intel-Skylake-Add-debugfs-NHLT-dmic-over.patch similarity index 100% rename from 0222-ASoC-Intel-Skylake-Add-debugfs-NHLT-dmic-over.patch rename to 0220-ASoC-Intel-Skylake-Add-debugfs-NHLT-dmic-over.patch diff --git a/0223-ASoC-Intel-Skylake-Read-blobs-from-debugfs-on.patch b/0221-ASoC-Intel-Skylake-Read-blobs-from-debugfs-on.patch similarity index 100% rename from 0223-ASoC-Intel-Skylake-Read-blobs-from-debugfs-on.patch rename to 0221-ASoC-Intel-Skylake-Read-blobs-from-debugfs-on.patch diff --git a/0224-ASoC-Intel-Skylake-NHLT-override-check-cfg-si.patch b/0222-ASoC-Intel-Skylake-NHLT-override-check-cfg-si.patch similarity index 100% rename from 0224-ASoC-Intel-Skylake-NHLT-override-check-cfg-si.patch rename to 0222-ASoC-Intel-Skylake-NHLT-override-check-cfg-si.patch diff --git a/0225-ASoC-Intel-Skylake-add-ssp-blob-override-supp.patch b/0223-ASoC-Intel-Skylake-add-ssp-blob-override-supp.patch similarity index 100% rename from 0225-ASoC-Intel-Skylake-add-ssp-blob-override-supp.patch rename to 0223-ASoC-Intel-Skylake-add-ssp-blob-override-supp.patch diff --git a/0226-WORKAROUND-Remove-size-check-for-DMIC-blob.patch b/0224-WORKAROUND-Remove-size-check-for-DMIC-blob.patch similarity index 100% rename from 0226-WORKAROUND-Remove-size-check-for-DMIC-blob.patch rename to 0224-WORKAROUND-Remove-size-check-for-DMIC-blob.patch diff --git a/0227-REVERTME-SKL-Topology-Add-logic-to-create-SDW.patch b/0225-REVERTME-SKL-Topology-Add-logic-to-create-SDW.patch similarity index 100% rename from 0227-REVERTME-SKL-Topology-Add-logic-to-create-SDW.patch rename to 0225-REVERTME-SKL-Topology-Add-logic-to-create-SDW.patch diff --git a/0228-SKL-PCM-Derive-the-SDW-master-controller-numb.patch b/0226-SKL-PCM-Derive-the-SDW-master-controller-numb.patch similarity index 100% rename from 0228-SKL-PCM-Derive-the-SDW-master-controller-numb.patch rename to 0226-SKL-PCM-Derive-the-SDW-master-controller-numb.patch diff --git a/0229-REVERTME-SKL-PCM-Enable-aggregation-for-the-M.patch b/0227-REVERTME-SKL-PCM-Enable-aggregation-for-the-M.patch similarity index 100% rename from 0229-REVERTME-SKL-PCM-Enable-aggregation-for-the-M.patch rename to 0227-REVERTME-SKL-PCM-Enable-aggregation-for-the-M.patch diff --git a/0230-ASoC-Intel-Skylake-Driver-ring-buffer-APIs-fo.patch b/0228-ASoC-Intel-Skylake-Driver-ring-buffer-APIs-fo.patch similarity index 100% rename from 0230-ASoC-Intel-Skylake-Driver-ring-buffer-APIs-fo.patch rename to 0228-ASoC-Intel-Skylake-Driver-ring-buffer-APIs-fo.patch diff --git a/0231-ASoC-Intel-Skylake-Handler-for-firmware-log-b.patch b/0229-ASoC-Intel-Skylake-Handler-for-firmware-log-b.patch similarity index 100% rename from 0231-ASoC-Intel-Skylake-Handler-for-firmware-log-b.patch rename to 0229-ASoC-Intel-Skylake-Handler-for-firmware-log-b.patch diff --git a/0232-ASoC-Intel-Skylake-Compress-ops-for-firmware-.patch b/0230-ASoC-Intel-Skylake-Compress-ops-for-firmware-.patch similarity index 100% rename from 0232-ASoC-Intel-Skylake-Compress-ops-for-firmware-.patch rename to 0230-ASoC-Intel-Skylake-Compress-ops-for-firmware-.patch diff --git a/0233-ASoC-Intel-Skylake-Check-buffer-users-and-pre.patch b/0231-ASoC-Intel-Skylake-Check-buffer-users-and-pre.patch similarity index 100% rename from 0233-ASoC-Intel-Skylake-Check-buffer-users-and-pre.patch rename to 0231-ASoC-Intel-Skylake-Check-buffer-users-and-pre.patch diff --git a/0234-ASoC-Intel-Skylake-Wake-up-any-potential-read.patch b/0232-ASoC-Intel-Skylake-Wake-up-any-potential-read.patch similarity index 100% rename from 0234-ASoC-Intel-Skylake-Wake-up-any-potential-read.patch rename to 0232-ASoC-Intel-Skylake-Wake-up-any-potential-read.patch diff --git a/0235-ASoC-Intel-Skylake-Convert-buffer-size-to-of-.patch b/0233-ASoC-Intel-Skylake-Convert-buffer-size-to-of-.patch similarity index 100% rename from 0235-ASoC-Intel-Skylake-Convert-buffer-size-to-of-.patch rename to 0233-ASoC-Intel-Skylake-Convert-buffer-size-to-of-.patch diff --git a/0236-ASoC-Intel-CNL-Initialize-trace-buffer-window.patch b/0234-ASoC-Intel-CNL-Initialize-trace-buffer-window.patch similarity index 100% rename from 0236-ASoC-Intel-CNL-Initialize-trace-buffer-window.patch rename to 0234-ASoC-Intel-CNL-Initialize-trace-buffer-window.patch diff --git a/0237-ASoC-Intel-Skylake-Add-trace-buffer-dais-for-.patch b/0235-ASoC-Intel-Skylake-Add-trace-buffer-dais-for-.patch similarity index 100% rename from 0237-ASoC-Intel-Skylake-Add-trace-buffer-dais-for-.patch rename to 0235-ASoC-Intel-Skylake-Add-trace-buffer-dais-for-.patch diff --git a/0238-REVERTME-1-Revert-when-logging-is-updated-in-.patch b/0236-REVERTME-1-Revert-when-logging-is-updated-in-.patch similarity index 100% rename from 0238-REVERTME-1-Revert-when-logging-is-updated-in-.patch rename to 0236-REVERTME-1-Revert-when-logging-is-updated-in-.patch diff --git a/0239-ASoC-Intel-Skylake-Add-dsp-log-level-selectio.patch b/0237-ASoC-Intel-Skylake-Add-dsp-log-level-selectio.patch similarity index 100% rename from 0239-ASoC-Intel-Skylake-Add-dsp-log-level-selectio.patch rename to 0237-ASoC-Intel-Skylake-Add-dsp-log-level-selectio.patch diff --git a/0240-ASoC-Intel-CNL-Enable-SDW-aggregation-support.patch b/0238-ASoC-Intel-CNL-Enable-SDW-aggregation-support.patch similarity index 100% rename from 0240-ASoC-Intel-CNL-Enable-SDW-aggregation-support.patch rename to 0238-ASoC-Intel-CNL-Enable-SDW-aggregation-support.patch diff --git a/0241-ASoC-Intel-SKL-Remove-SDW-aggregation-hardcod.patch b/0239-ASoC-Intel-SKL-Remove-SDW-aggregation-hardcod.patch similarity index 100% rename from 0241-ASoC-Intel-SKL-Remove-SDW-aggregation-hardcod.patch rename to 0239-ASoC-Intel-SKL-Remove-SDW-aggregation-hardcod.patch diff --git a/0242-ASoC-Intel-Aggregation-fixes-for-masters-othe.patch b/0240-ASoC-Intel-Aggregation-fixes-for-masters-othe.patch similarity index 100% rename from 0242-ASoC-Intel-Aggregation-fixes-for-masters-othe.patch rename to 0240-ASoC-Intel-Aggregation-fixes-for-masters-othe.patch diff --git a/0243-ASoC-Fix-TLV-control-size-in-TLV-handler.patch b/0241-ASoC-Fix-TLV-control-size-in-TLV-handler.patch similarity index 100% rename from 0243-ASoC-Fix-TLV-control-size-in-TLV-handler.patch rename to 0241-ASoC-Fix-TLV-control-size-in-TLV-handler.patch diff --git a/0244-ALSA-hda-Enhance-HD-audio-framework-to-suppor.patch b/0242-ALSA-hda-Enhance-HD-audio-framework-to-suppor.patch similarity index 100% rename from 0244-ALSA-hda-Enhance-HD-audio-framework-to-suppor.patch rename to 0242-ALSA-hda-Enhance-HD-audio-framework-to-suppor.patch diff --git a/0245-ALSA-hda-Service-buffer-completed-interrupts-.patch b/0243-ALSA-hda-Service-buffer-completed-interrupts-.patch similarity index 100% rename from 0245-ALSA-hda-Service-buffer-completed-interrupts-.patch rename to 0243-ALSA-hda-Service-buffer-completed-interrupts-.patch diff --git a/0246-ASoC-Intel-Add-delete-module-IPC.patch b/0244-ASoC-Intel-Add-delete-module-IPC.patch similarity index 100% rename from 0246-ASoC-Intel-Add-delete-module-IPC.patch rename to 0244-ASoC-Intel-Add-delete-module-IPC.patch diff --git a/0247-ASoC-Intel-Add-Probe-compress-APIs.patch b/0245-ASoC-Intel-Add-Probe-compress-APIs.patch similarity index 100% rename from 0247-ASoC-Intel-Add-Probe-compress-APIs.patch rename to 0245-ASoC-Intel-Add-Probe-compress-APIs.patch diff --git a/0248-ASoC-Intel-Skylake-KW-fixes-for-probe-feature.patch b/0246-ASoC-Intel-Skylake-KW-fixes-for-probe-feature.patch similarity index 100% rename from 0248-ASoC-Intel-Skylake-KW-fixes-for-probe-feature.patch rename to 0246-ASoC-Intel-Skylake-KW-fixes-for-probe-feature.patch diff --git a/0249-ASoC-Intel-Skylake-Probe-Start-DMA-before-set.patch b/0247-ASoC-Intel-Skylake-Probe-Start-DMA-before-set.patch similarity index 100% rename from 0249-ASoC-Intel-Skylake-Probe-Start-DMA-before-set.patch rename to 0247-ASoC-Intel-Skylake-Probe-Start-DMA-before-set.patch diff --git a/0250-ASoC-Intel-Skylake-Probe-Limit-the-bytes-to-c.patch b/0248-ASoC-Intel-Skylake-Probe-Limit-the-bytes-to-c.patch similarity index 100% rename from 0250-ASoC-Intel-Skylake-Probe-Limit-the-bytes-to-c.patch rename to 0248-ASoC-Intel-Skylake-Probe-Limit-the-bytes-to-c.patch diff --git a/0251-ASoC-Intel-Skylake-Probe-Increase-the-DMA-buf.patch b/0249-ASoC-Intel-Skylake-Probe-Increase-the-DMA-buf.patch similarity index 100% rename from 0251-ASoC-Intel-Skylake-Probe-Increase-the-DMA-buf.patch rename to 0249-ASoC-Intel-Skylake-Probe-Increase-the-DMA-buf.patch diff --git a/0252-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch b/0250-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch similarity index 100% rename from 0252-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch rename to 0250-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch diff --git a/0253-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch b/0251-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch similarity index 100% rename from 0253-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch rename to 0251-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch diff --git a/0254-Soundwire-squashed-commits-2.patch b/0252-Soundwire-squashed-commits-2.patch similarity index 100% rename from 0254-Soundwire-squashed-commits-2.patch rename to 0252-Soundwire-squashed-commits-2.patch diff --git a/0255-ALSA-core-let-low-level-driver-or-userspace-d.patch b/0253-ALSA-core-let-low-level-driver-or-userspace-d.patch similarity index 100% rename from 0255-ALSA-core-let-low-level-driver-or-userspace-d.patch rename to 0253-ALSA-core-let-low-level-driver-or-userspace-d.patch diff --git a/0256-ALSA-pcm-conditionally-avoid-mmap-of-control-.patch b/0254-ALSA-pcm-conditionally-avoid-mmap-of-control-.patch similarity index 100% rename from 0256-ALSA-pcm-conditionally-avoid-mmap-of-control-.patch rename to 0254-ALSA-pcm-conditionally-avoid-mmap-of-control-.patch diff --git a/0257-ALSA-hda-ext-add-spib-to-stream-context.patch b/0255-ALSA-hda-ext-add-spib-to-stream-context.patch similarity index 100% rename from 0257-ALSA-hda-ext-add-spib-to-stream-context.patch rename to 0255-ALSA-hda-ext-add-spib-to-stream-context.patch diff --git a/0258-ASoC-Intel-Skylake-add-support-for-spib-mode.patch b/0256-ASoC-Intel-Skylake-add-support-for-spib-mode.patch similarity index 100% rename from 0258-ASoC-Intel-Skylake-add-support-for-spib-mode.patch rename to 0256-ASoC-Intel-Skylake-add-support-for-spib-mode.patch diff --git a/0259-ASoC-Intel-CNL-Fetch-ACPI-data-for-SoundWire-.patch b/0257-ASoC-Intel-CNL-Fetch-ACPI-data-for-SoundWire-.patch similarity index 100% rename from 0259-ASoC-Intel-CNL-Fetch-ACPI-data-for-SoundWire-.patch rename to 0257-ASoC-Intel-CNL-Fetch-ACPI-data-for-SoundWire-.patch diff --git a/0260-ASoC-Intel-CNL-get-SoundWire-Master-capabilit.patch b/0258-ASoC-Intel-CNL-get-SoundWire-Master-capabilit.patch similarity index 100% rename from 0260-ASoC-Intel-CNL-get-SoundWire-Master-capabilit.patch rename to 0258-ASoC-Intel-CNL-get-SoundWire-Master-capabilit.patch diff --git a/0261-REVERTME-ASoC-Intel-CNL-Define-DPN-package-fo.patch b/0259-REVERTME-ASoC-Intel-CNL-Define-DPN-package-fo.patch similarity index 100% rename from 0261-REVERTME-ASoC-Intel-CNL-Define-DPN-package-fo.patch rename to 0259-REVERTME-ASoC-Intel-CNL-Define-DPN-package-fo.patch diff --git a/0262-ASoC-Intel-Skylake-Support-for-24KHz-SoC-DMIC.patch b/0260-ASoC-Intel-Skylake-Support-for-24KHz-SoC-DMIC.patch similarity index 100% rename from 0262-ASoC-Intel-Skylake-Support-for-24KHz-SoC-DMIC.patch rename to 0260-ASoC-Intel-Skylake-Support-for-24KHz-SoC-DMIC.patch diff --git a/0263-ASoC-add-rt700-codec-driver.patch b/0261-ASoC-add-rt700-codec-driver.patch similarity index 100% rename from 0263-ASoC-add-rt700-codec-driver.patch rename to 0261-ASoC-add-rt700-codec-driver.patch diff --git a/0264-ASoC-Intel-Add-support-for-ALC700-machine-dri.patch b/0262-ASoC-Intel-Add-support-for-ALC700-machine-dri.patch similarity index 100% rename from 0264-ASoC-Intel-Add-support-for-ALC700-machine-dri.patch rename to 0262-ASoC-Intel-Add-support-for-ALC700-machine-dri.patch diff --git a/0265-ASoC-Intel-CNL-Add-new-BE-dai-for-ALC701-HS-p.patch b/0263-ASoC-Intel-CNL-Add-new-BE-dai-for-ALC701-HS-p.patch similarity index 100% rename from 0265-ASoC-Intel-CNL-Add-new-BE-dai-for-ALC701-HS-p.patch rename to 0263-ASoC-Intel-CNL-Add-new-BE-dai-for-ALC701-HS-p.patch diff --git a/0266-ASoC-Intel-CNL-Enable-sdw-interrupt-during-D0.patch b/0264-ASoC-Intel-CNL-Enable-sdw-interrupt-during-D0.patch similarity index 100% rename from 0266-ASoC-Intel-CNL-Enable-sdw-interrupt-during-D0.patch rename to 0264-ASoC-Intel-CNL-Enable-sdw-interrupt-during-D0.patch diff --git a/0267-ASoC-Intel-Skylake-fix-for-large-get-config-a.patch b/0265-ASoC-Intel-Skylake-fix-for-large-get-config-a.patch similarity index 100% rename from 0267-ASoC-Intel-Skylake-fix-for-large-get-config-a.patch rename to 0265-ASoC-Intel-Skylake-fix-for-large-get-config-a.patch diff --git a/0268-ASoC-Intel-Skylake-generic-IPC-message-suppor.patch b/0266-ASoC-Intel-Skylake-generic-IPC-message-suppor.patch similarity index 100% rename from 0268-ASoC-Intel-Skylake-generic-IPC-message-suppor.patch rename to 0266-ASoC-Intel-Skylake-generic-IPC-message-suppor.patch diff --git a/0269-ASoC-Intel-Skylake-Add-support-to-get-fw-conf.patch b/0267-ASoC-Intel-Skylake-Add-support-to-get-fw-conf.patch similarity index 100% rename from 0269-ASoC-Intel-Skylake-Add-support-to-get-fw-conf.patch rename to 0267-ASoC-Intel-Skylake-Add-support-to-get-fw-conf.patch diff --git a/0270-WORKAROUND-Register-masters-only-if-RT700-is-.patch b/0268-WORKAROUND-Register-masters-only-if-RT700-is-.patch similarity index 100% rename from 0270-WORKAROUND-Register-masters-only-if-RT700-is-.patch rename to 0268-WORKAROUND-Register-masters-only-if-RT700-is-.patch diff --git a/0271-WORKAROUND-Add-if-for-platform-codec-name-in-.patch b/0269-WORKAROUND-Add-if-for-platform-codec-name-in-.patch similarity index 100% rename from 0271-WORKAROUND-Add-if-for-platform-codec-name-in-.patch rename to 0269-WORKAROUND-Add-if-for-platform-codec-name-in-.patch diff --git a/0272-REVERTME-ASoC-Intel-CNL-Change-BE-id-to-SDW-M.patch b/0270-REVERTME-ASoC-Intel-CNL-Change-BE-id-to-SDW-M.patch similarity index 100% rename from 0272-REVERTME-ASoC-Intel-CNL-Change-BE-id-to-SDW-M.patch rename to 0270-REVERTME-ASoC-Intel-CNL-Change-BE-id-to-SDW-M.patch diff --git a/0273-ASoC-Intel-CNL-Update-dsp-ops-API-to-take-dir.patch b/0271-ASoC-Intel-CNL-Update-dsp-ops-API-to-take-dir.patch similarity index 100% rename from 0273-ASoC-Intel-CNL-Update-dsp-ops-API-to-take-dir.patch rename to 0271-ASoC-Intel-CNL-Update-dsp-ops-API-to-take-dir.patch diff --git a/0274-ASoC-Intel-CNL-Platform-driver-implementation.patch b/0272-ASoC-Intel-CNL-Platform-driver-implementation.patch similarity index 100% rename from 0274-ASoC-Intel-CNL-Platform-driver-implementation.patch rename to 0272-ASoC-Intel-CNL-Platform-driver-implementation.patch diff --git a/0275-ASoC-Intel-CNL-Register-BRA-ops-in-init.patch b/0273-ASoC-Intel-CNL-Register-BRA-ops-in-init.patch similarity index 100% rename from 0275-ASoC-Intel-CNL-Register-BRA-ops-in-init.patch rename to 0273-ASoC-Intel-CNL-Register-BRA-ops-in-init.patch diff --git a/0276-ASoC-rt700-codec-changes-for-BRA-feature.patch b/0274-ASoC-rt700-codec-changes-for-BRA-feature.patch similarity index 100% rename from 0276-ASoC-rt700-codec-changes-for-BRA-feature.patch rename to 0274-ASoC-rt700-codec-changes-for-BRA-feature.patch diff --git a/0277-ASoC-Intel-Add-support-for-Icelake-IDs.patch b/0275-ASoC-Intel-Add-support-for-Icelake-IDs.patch similarity index 100% rename from 0277-ASoC-Intel-Add-support-for-Icelake-IDs.patch rename to 0275-ASoC-Intel-Add-support-for-Icelake-IDs.patch diff --git a/0278-ASoC-Intel-Fix-build-warning-for-unused-varia.patch b/0276-ASoC-Intel-Fix-build-warning-for-unused-varia.patch similarity index 100% rename from 0278-ASoC-Intel-Fix-build-warning-for-unused-varia.patch rename to 0276-ASoC-Intel-Fix-build-warning-for-unused-varia.patch diff --git a/0279-ASoC-Intel-Fix-Compilation-issues-for-probe-c.patch b/0277-ASoC-Intel-Fix-Compilation-issues-for-probe-c.patch similarity index 100% rename from 0279-ASoC-Intel-Fix-Compilation-issues-for-probe-c.patch rename to 0277-ASoC-Intel-Fix-Compilation-issues-for-probe-c.patch diff --git a/0280-ASoC-Intel-Kconfig-and-Makefile-changes-for-S.patch b/0278-ASoC-Intel-Kconfig-and-Makefile-changes-for-S.patch similarity index 100% rename from 0280-ASoC-Intel-Kconfig-and-Makefile-changes-for-S.patch rename to 0278-ASoC-Intel-Kconfig-and-Makefile-changes-for-S.patch diff --git a/0281-ASoC-Intel-Boards-Add-CNL-RT274-I2S-machine-d.patch b/0279-ASoC-Intel-Boards-Add-CNL-RT274-I2S-machine-d.patch similarity index 100% rename from 0281-ASoC-Intel-Boards-Add-CNL-RT274-I2S-machine-d.patch rename to 0279-ASoC-Intel-Boards-Add-CNL-RT274-I2S-machine-d.patch diff --git a/0282-ASoC-Intel-Modify-Icelake-machine-id-to-use-R.patch b/0280-ASoC-Intel-Modify-Icelake-machine-id-to-use-R.patch similarity index 100% rename from 0282-ASoC-Intel-Modify-Icelake-machine-id-to-use-R.patch rename to 0280-ASoC-Intel-Modify-Icelake-machine-id-to-use-R.patch diff --git a/0283-ASoC-Intel-board-Add-id_table-in-cnl_rt274.patch b/0281-ASoC-Intel-board-Add-id_table-in-cnl_rt274.patch similarity index 100% rename from 0283-ASoC-Intel-board-Add-id_table-in-cnl_rt274.patch rename to 0281-ASoC-Intel-board-Add-id_table-in-cnl_rt274.patch diff --git a/0284-ASoC-Intel-Skylake-Support-for-all-rates-from.patch b/0282-ASoC-Intel-Skylake-Support-for-all-rates-from.patch similarity index 100% rename from 0284-ASoC-Intel-Skylake-Support-for-all-rates-from.patch rename to 0282-ASoC-Intel-Skylake-Support-for-all-rates-from.patch diff --git a/0285-ASoc-rt700-Fix-for-first-playback-and-capture.patch b/0283-ASoc-rt700-Fix-for-first-playback-and-capture.patch similarity index 100% rename from 0285-ASoc-rt700-Fix-for-first-playback-and-capture.patch rename to 0283-ASoc-rt700-Fix-for-first-playback-and-capture.patch diff --git a/0286-ASoC-Intel-Add-SoundWire-aggregation-support.patch b/0284-ASoC-Intel-Add-SoundWire-aggregation-support.patch similarity index 100% rename from 0286-ASoC-Intel-Add-SoundWire-aggregation-support.patch rename to 0284-ASoC-Intel-Add-SoundWire-aggregation-support.patch diff --git a/0287-ASoC-Intel-Skylake-Avoid-resume-capablity-for.patch b/0285-ASoC-Intel-Skylake-Avoid-resume-capablity-for.patch similarity index 100% rename from 0287-ASoC-Intel-Skylake-Avoid-resume-capablity-for.patch rename to 0285-ASoC-Intel-Skylake-Avoid-resume-capablity-for.patch diff --git a/0288-ASoC-Intel-Skylake-Support-all-I2S-ports-with.patch b/0286-ASoC-Intel-Skylake-Support-all-I2S-ports-with.patch similarity index 100% rename from 0288-ASoC-Intel-Skylake-Support-all-I2S-ports-with.patch rename to 0286-ASoC-Intel-Skylake-Support-all-I2S-ports-with.patch diff --git a/0289-ASoC-Intel-Skylake-Add-platform-DAI-for-deepb.patch b/0287-ASoC-Intel-Skylake-Add-platform-DAI-for-deepb.patch similarity index 100% rename from 0289-ASoC-Intel-Skylake-Add-platform-DAI-for-deepb.patch rename to 0287-ASoC-Intel-Skylake-Add-platform-DAI-for-deepb.patch diff --git a/0290-ASoC-Intel-board-Enable-deepbuffer-capture-in.patch b/0288-ASoC-Intel-board-Enable-deepbuffer-capture-in.patch similarity index 100% rename from 0290-ASoC-Intel-board-Enable-deepbuffer-capture-in.patch rename to 0288-ASoC-Intel-board-Enable-deepbuffer-capture-in.patch diff --git a/0291-ASoC-Intel-Add-Icelake-machine-id-to-use-RT70.patch b/0289-ASoC-Intel-Add-Icelake-machine-id-to-use-RT70.patch similarity index 100% rename from 0291-ASoC-Intel-Add-Icelake-machine-id-to-use-RT70.patch rename to 0289-ASoC-Intel-Add-Icelake-machine-id-to-use-RT70.patch diff --git a/0292-ASoC-Intel-Add-Icelake-machine-id-to-use-WM82.patch b/0290-ASoC-Intel-Add-Icelake-machine-id-to-use-WM82.patch similarity index 100% rename from 0292-ASoC-Intel-Add-Icelake-machine-id-to-use-WM82.patch rename to 0290-ASoC-Intel-Add-Icelake-machine-id-to-use-WM82.patch diff --git a/0293-ASoC-Intel-Skylake-Fix-library-name-length.patch b/0291-ASoC-Intel-Skylake-Fix-library-name-length.patch similarity index 100% rename from 0293-ASoC-Intel-Skylake-Fix-library-name-length.patch rename to 0291-ASoC-Intel-Skylake-Fix-library-name-length.patch diff --git a/0294-ASoC-Intel-Skylake-Update-SDW-BRA-interface.patch b/0292-ASoC-Intel-Skylake-Update-SDW-BRA-interface.patch similarity index 100% rename from 0294-ASoC-Intel-Skylake-Update-SDW-BRA-interface.patch rename to 0292-ASoC-Intel-Skylake-Update-SDW-BRA-interface.patch diff --git a/0295-ASoC-Intel-Skylake-Split-dais-and-add-flag-fo.patch b/0293-ASoC-Intel-Skylake-Split-dais-and-add-flag-fo.patch similarity index 100% rename from 0295-ASoC-Intel-Skylake-Split-dais-and-add-flag-fo.patch rename to 0293-ASoC-Intel-Skylake-Split-dais-and-add-flag-fo.patch diff --git a/0296-ASoC-Intel-Skylake-Add-component-ops-for-dai-.patch b/0294-ASoC-Intel-Skylake-Add-component-ops-for-dai-.patch similarity index 100% rename from 0296-ASoC-Intel-Skylake-Add-component-ops-for-dai-.patch rename to 0294-ASoC-Intel-Skylake-Add-component-ops-for-dai-.patch diff --git a/0297-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch b/0295-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch similarity index 100% rename from 0297-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch rename to 0295-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch diff --git a/0298-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch b/0296-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch similarity index 100% rename from 0298-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch rename to 0296-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch diff --git a/0299-ASoC-Intel-Update-device-type-entry-for-Sound.patch b/0297-ASoC-Intel-Update-device-type-entry-for-Sound.patch similarity index 100% rename from 0299-ASoC-Intel-Update-device-type-entry-for-Sound.patch rename to 0297-ASoC-Intel-Update-device-type-entry-for-Sound.patch diff --git a/0300-ASoC-Intel-Skylake-Use-device-type-to-determi.patch b/0298-ASoC-Intel-Skylake-Use-device-type-to-determi.patch similarity index 100% rename from 0300-ASoC-Intel-Skylake-Use-device-type-to-determi.patch rename to 0298-ASoC-Intel-Skylake-Use-device-type-to-determi.patch diff --git a/0301-ASoC-Intel-Remove-pdi_type-support-from-topol.patch b/0299-ASoC-Intel-Remove-pdi_type-support-from-topol.patch similarity index 100% rename from 0301-ASoC-Intel-Remove-pdi_type-support-from-topol.patch rename to 0299-ASoC-Intel-Remove-pdi_type-support-from-topol.patch diff --git a/0302-ASoC-Intel-Skylake-Define-tokens-for-aggregat.patch b/0300-ASoC-Intel-Skylake-Define-tokens-for-aggregat.patch similarity index 100% rename from 0302-ASoC-Intel-Skylake-Define-tokens-for-aggregat.patch rename to 0300-ASoC-Intel-Skylake-Define-tokens-for-aggregat.patch diff --git a/0303-ASoC-Intel-Skylake-Parse-tokens-to-support-ag.patch b/0301-ASoC-Intel-Skylake-Parse-tokens-to-support-ag.patch similarity index 100% rename from 0303-ASoC-Intel-Skylake-Parse-tokens-to-support-ag.patch rename to 0301-ASoC-Intel-Skylake-Parse-tokens-to-support-ag.patch diff --git a/0304-ASoC-Intel-CNL-Add-DAIs-for-SDW-Aggregation.patch b/0302-ASoC-Intel-CNL-Add-DAIs-for-SDW-Aggregation.patch similarity index 100% rename from 0304-ASoC-Intel-CNL-Add-DAIs-for-SDW-Aggregation.patch rename to 0302-ASoC-Intel-CNL-Add-DAIs-for-SDW-Aggregation.patch diff --git a/0305-ASoC-Intel-Kconfig-changes-for-SoundWire-aggr.patch b/0303-ASoC-Intel-Kconfig-changes-for-SoundWire-aggr.patch similarity index 100% rename from 0305-ASoC-Intel-Kconfig-changes-for-SoundWire-aggr.patch rename to 0303-ASoC-Intel-Kconfig-changes-for-SoundWire-aggr.patch diff --git a/0306-ASoC-rt700-codec-changes-for-SDW-Aggregation.patch b/0304-ASoC-rt700-codec-changes-for-SDW-Aggregation.patch similarity index 100% rename from 0306-ASoC-rt700-codec-changes-for-SDW-Aggregation.patch rename to 0304-ASoC-rt700-codec-changes-for-SDW-Aggregation.patch diff --git a/0307-ASoC-Intel-Boards-Add-SDW-Aggregation-changes.patch b/0305-ASoC-Intel-Boards-Add-SDW-Aggregation-changes.patch similarity index 100% rename from 0307-ASoC-Intel-Boards-Add-SDW-Aggregation-changes.patch rename to 0305-ASoC-Intel-Boards-Add-SDW-Aggregation-changes.patch diff --git a/0308-ASoC-Intel-Change-sst_ipc_tx_message_wait-api.patch b/0306-ASoC-Intel-Change-sst_ipc_tx_message_wait-api.patch similarity index 100% rename from 0308-ASoC-Intel-Change-sst_ipc_tx_message_wait-api.patch rename to 0306-ASoC-Intel-Change-sst_ipc_tx_message_wait-api.patch diff --git a/0309-ASoC-Intel-Skylake-Extract-the-receive-respon.patch b/0307-ASoC-Intel-Skylake-Extract-the-receive-respon.patch similarity index 100% rename from 0309-ASoC-Intel-Skylake-Extract-the-receive-respon.patch rename to 0307-ASoC-Intel-Skylake-Extract-the-receive-respon.patch diff --git a/0310-ASoC-Intel-Skylake-Querying-FW-CONFIG-informa.patch b/0308-ASoC-Intel-Skylake-Querying-FW-CONFIG-informa.patch similarity index 100% rename from 0310-ASoC-Intel-Skylake-Querying-FW-CONFIG-informa.patch rename to 0308-ASoC-Intel-Skylake-Querying-FW-CONFIG-informa.patch diff --git a/0311-ASoC-Intel-Skylake-Parse-the-fw-property.patch b/0309-ASoC-Intel-Skylake-Parse-the-fw-property.patch similarity index 100% rename from 0311-ASoC-Intel-Skylake-Parse-the-fw-property.patch rename to 0309-ASoC-Intel-Skylake-Parse-the-fw-property.patch diff --git a/0312-ASoC-Intel-Skylake-Check-for-memory-reclaim-b.patch b/0310-ASoC-Intel-Skylake-Check-for-memory-reclaim-b.patch similarity index 100% rename from 0312-ASoC-Intel-Skylake-Check-for-memory-reclaim-b.patch rename to 0310-ASoC-Intel-Skylake-Check-for-memory-reclaim-b.patch diff --git a/0313-ASoC-Intel-Skylake-Better-handling-of-stream-.patch b/0311-ASoC-Intel-Skylake-Better-handling-of-stream-.patch similarity index 100% rename from 0313-ASoC-Intel-Skylake-Better-handling-of-stream-.patch rename to 0311-ASoC-Intel-Skylake-Better-handling-of-stream-.patch diff --git a/0314-REVERTME-ASoC-Intel-Skylake-Set-DUM-bit-in-EM.patch b/0312-REVERTME-ASoC-Intel-Skylake-Set-DUM-bit-in-EM.patch similarity index 100% rename from 0314-REVERTME-ASoC-Intel-Skylake-Set-DUM-bit-in-EM.patch rename to 0312-REVERTME-ASoC-Intel-Skylake-Set-DUM-bit-in-EM.patch diff --git a/0315-ASoC-Intel-Skylake-Add-D0i3-support-for-Icela.patch b/0313-ASoC-Intel-Skylake-Add-D0i3-support-for-Icela.patch similarity index 100% rename from 0315-ASoC-Intel-Skylake-Add-D0i3-support-for-Icela.patch rename to 0313-ASoC-Intel-Skylake-Add-D0i3-support-for-Icela.patch diff --git a/0316-ASoC-Intel-Skylake-Audio-format-mismatch-dete.patch b/0314-ASoC-Intel-Skylake-Audio-format-mismatch-dete.patch similarity index 100% rename from 0316-ASoC-Intel-Skylake-Audio-format-mismatch-dete.patch rename to 0314-ASoC-Intel-Skylake-Audio-format-mismatch-dete.patch diff --git a/0317-ASoC-Intel-Skylake-add-sysfs-files-for-firmwa.patch b/0315-ASoC-Intel-Skylake-add-sysfs-files-for-firmwa.patch similarity index 100% rename from 0317-ASoC-Intel-Skylake-add-sysfs-files-for-firmwa.patch rename to 0315-ASoC-Intel-Skylake-add-sysfs-files-for-firmwa.patch diff --git a/0318-ASoC-Intel-Skylake-Append-SDW-device-to-devic.patch b/0316-ASoC-Intel-Skylake-Append-SDW-device-to-devic.patch similarity index 100% rename from 0318-ASoC-Intel-Skylake-Append-SDW-device-to-devic.patch rename to 0316-ASoC-Intel-Skylake-Append-SDW-device-to-devic.patch diff --git a/0319-ASoC-Intel-Skylake-Debugfs-for-core-power-han.patch b/0317-ASoC-Intel-Skylake-Debugfs-for-core-power-han.patch similarity index 100% rename from 0319-ASoC-Intel-Skylake-Debugfs-for-core-power-han.patch rename to 0317-ASoC-Intel-Skylake-Debugfs-for-core-power-han.patch diff --git a/0320-ASoC-Intel-Skylake-DebugFs-changes-to-suit-FD.patch b/0318-ASoC-Intel-Skylake-DebugFs-changes-to-suit-FD.patch similarity index 100% rename from 0320-ASoC-Intel-Skylake-DebugFs-changes-to-suit-FD.patch rename to 0318-ASoC-Intel-Skylake-DebugFs-changes-to-suit-FD.patch diff --git a/0321-ASoC-Intel-Skylake-Support-Pipeline-Propertie.patch b/0319-ASoC-Intel-Skylake-Support-Pipeline-Propertie.patch similarity index 100% rename from 0321-ASoC-Intel-Skylake-Support-Pipeline-Propertie.patch rename to 0319-ASoC-Intel-Skylake-Support-Pipeline-Propertie.patch diff --git a/0322-ASoC-Intel-Skylake-Add-check-for-buffer-overf.patch b/0320-ASoC-Intel-Skylake-Add-check-for-buffer-overf.patch similarity index 100% rename from 0322-ASoC-Intel-Skylake-Add-check-for-buffer-overf.patch rename to 0320-ASoC-Intel-Skylake-Add-check-for-buffer-overf.patch diff --git a/0323-ASoC-Intel-Skylake-Increase-the-SSP-count-in-.patch b/0321-ASoC-Intel-Skylake-Increase-the-SSP-count-in-.patch similarity index 100% rename from 0323-ASoC-Intel-Skylake-Increase-the-SSP-count-in-.patch rename to 0321-ASoC-Intel-Skylake-Increase-the-SSP-count-in-.patch diff --git a/0324-ASoC-Intel-CNL-Retrieve-module-id-from-GUID.patch b/0322-ASoC-Intel-CNL-Retrieve-module-id-from-GUID.patch similarity index 100% rename from 0324-ASoC-Intel-CNL-Retrieve-module-id-from-GUID.patch rename to 0322-ASoC-Intel-CNL-Retrieve-module-id-from-GUID.patch diff --git a/0325-ASoc-rt700-Remove-runtime-get-and-put-from-se.patch b/0323-ASoc-rt700-Remove-runtime-get-and-put-from-se.patch similarity index 100% rename from 0325-ASoc-rt700-Remove-runtime-get-and-put-from-se.patch rename to 0323-ASoc-rt700-Remove-runtime-get-and-put-from-se.patch diff --git a/0326-ASoC-Intel-board-Add-SSP0-codec-codec-link.patch b/0324-ASoC-Intel-board-Add-SSP0-codec-codec-link.patch similarity index 100% rename from 0326-ASoC-Intel-board-Add-SSP0-codec-codec-link.patch rename to 0324-ASoC-Intel-board-Add-SSP0-codec-codec-link.patch diff --git a/0327-ASoC-Intel-board-Move-cnl_rt274-clock-setting.patch b/0325-ASoC-Intel-board-Move-cnl_rt274-clock-setting.patch similarity index 100% rename from 0327-ASoC-Intel-board-Move-cnl_rt274-clock-setting.patch rename to 0325-ASoC-Intel-board-Move-cnl_rt274-clock-setting.patch diff --git a/0328-SoundWire-Select-default-frame-shape-based-on.patch b/0326-SoundWire-Select-default-frame-shape-based-on.patch similarity index 100% rename from 0328-SoundWire-Select-default-frame-shape-based-on.patch rename to 0326-SoundWire-Select-default-frame-shape-based-on.patch diff --git a/0329-ASoC-rt700-Added-support-for-ICL-FPGA-SDW-Agg.patch b/0327-ASoC-rt700-Added-support-for-ICL-FPGA-SDW-Agg.patch similarity index 100% rename from 0329-ASoC-rt700-Added-support-for-ICL-FPGA-SDW-Agg.patch rename to 0327-ASoC-rt700-Added-support-for-ICL-FPGA-SDW-Agg.patch diff --git a/0330-ASoC-Intel-Boards-Add-support-for-ICL-FPGA-SD.patch b/0328-ASoC-Intel-Boards-Add-support-for-ICL-FPGA-SD.patch similarity index 100% rename from 0330-ASoC-Intel-Boards-Add-support-for-ICL-FPGA-SD.patch rename to 0328-ASoC-Intel-Boards-Add-support-for-ICL-FPGA-SD.patch diff --git a/0331-ASoC-Intel-CNL-Add-support-for-ICL-FPGA-SDW-A.patch b/0329-ASoC-Intel-CNL-Add-support-for-ICL-FPGA-SDW-A.patch similarity index 100% rename from 0331-ASoC-Intel-CNL-Add-support-for-ICL-FPGA-SDW-A.patch rename to 0329-ASoC-Intel-CNL-Add-support-for-ICL-FPGA-SDW-A.patch diff --git a/0332-ASoC-Intel-Skylake-Add-support-for-getting-hw.patch b/0330-ASoC-Intel-Skylake-Add-support-for-getting-hw.patch similarity index 100% rename from 0332-ASoC-Intel-Skylake-Add-support-for-getting-hw.patch rename to 0330-ASoC-Intel-Skylake-Add-support-for-getting-hw.patch diff --git a/0333-ASoC-Intel-Skylake-Get-dsp-core-count-from-hw.patch b/0331-ASoC-Intel-Skylake-Get-dsp-core-count-from-hw.patch similarity index 100% rename from 0333-ASoC-Intel-Skylake-Get-dsp-core-count-from-hw.patch rename to 0331-ASoC-Intel-Skylake-Get-dsp-core-count-from-hw.patch diff --git a/0334-ASoC-Intel-Skylake-Add-user-notification-even.patch b/0332-ASoC-Intel-Skylake-Add-user-notification-even.patch similarity index 100% rename from 0334-ASoC-Intel-Skylake-Add-user-notification-even.patch rename to 0332-ASoC-Intel-Skylake-Add-user-notification-even.patch diff --git a/0335-ASoC-Intel-Extract-the-nhlt-version-from-DSDT.patch b/0333-ASoC-Intel-Extract-the-nhlt-version-from-DSDT.patch similarity index 100% rename from 0335-ASoC-Intel-Extract-the-nhlt-version-from-DSDT.patch rename to 0333-ASoC-Intel-Extract-the-nhlt-version-from-DSDT.patch diff --git a/0336-ASoC-Intel-Skylake-Increase-the-max-number-of.patch b/0334-ASoC-Intel-Skylake-Increase-the-max-number-of.patch similarity index 100% rename from 0336-ASoC-Intel-Skylake-Increase-the-max-number-of.patch rename to 0334-ASoC-Intel-Skylake-Increase-the-max-number-of.patch diff --git a/0337-ASoC-Intel-Skylake-Add-single-module-support-.patch b/0335-ASoC-Intel-Skylake-Add-single-module-support-.patch similarity index 100% rename from 0337-ASoC-Intel-Skylake-Add-single-module-support-.patch rename to 0335-ASoC-Intel-Skylake-Add-single-module-support-.patch diff --git a/0338-ASoC-Intel-Skylake-Fix-incorrect-parsing-of-p.patch b/0336-ASoC-Intel-Skylake-Fix-incorrect-parsing-of-p.patch similarity index 100% rename from 0338-ASoC-Intel-Skylake-Fix-incorrect-parsing-of-p.patch rename to 0336-ASoC-Intel-Skylake-Fix-incorrect-parsing-of-p.patch diff --git a/0339-ASoC-Intel-Skylake-Create-SSP-BE-dais-dynamic.patch b/0337-ASoC-Intel-Skylake-Create-SSP-BE-dais-dynamic.patch similarity index 100% rename from 0339-ASoC-Intel-Skylake-Create-SSP-BE-dais-dynamic.patch rename to 0337-ASoC-Intel-Skylake-Create-SSP-BE-dais-dynamic.patch diff --git a/0340-ASoC-Intel-Skylake-Adding-support-for-set-sys.patch b/0338-ASoC-Intel-Skylake-Adding-support-for-set-sys.patch similarity index 100% rename from 0340-ASoC-Intel-Skylake-Adding-support-for-set-sys.patch rename to 0338-ASoC-Intel-Skylake-Adding-support-for-set-sys.patch diff --git a/0341-ASoC-Intel-Skylake-Update-FW-Trace-logs-featu.patch b/0339-ASoC-Intel-Skylake-Update-FW-Trace-logs-featu.patch similarity index 100% rename from 0341-ASoC-Intel-Skylake-Update-FW-Trace-logs-featu.patch rename to 0339-ASoC-Intel-Skylake-Update-FW-Trace-logs-featu.patch diff --git a/0342-ASoC-Intel-Skylake-Fix-FW-logging-data-corrup.patch b/0340-ASoC-Intel-Skylake-Fix-FW-logging-data-corrup.patch similarity index 100% rename from 0342-ASoC-Intel-Skylake-Fix-FW-logging-data-corrup.patch rename to 0340-ASoC-Intel-Skylake-Fix-FW-logging-data-corrup.patch diff --git a/0343-ASoC-Intel-Board-Add-BXTP-MRB-machine-driver-.patch b/0341-ASoC-Intel-Board-Add-BXTP-MRB-machine-driver-.patch similarity index 100% rename from 0343-ASoC-Intel-Board-Add-BXTP-MRB-machine-driver-.patch rename to 0341-ASoC-Intel-Board-Add-BXTP-MRB-machine-driver-.patch diff --git a/0344-ASoC-tdf8532-NXP-TDF8532-audio-class-D-amplif.patch b/0342-ASoC-tdf8532-NXP-TDF8532-audio-class-D-amplif.patch similarity index 100% rename from 0344-ASoC-tdf8532-NXP-TDF8532-audio-class-D-amplif.patch rename to 0342-ASoC-tdf8532-NXP-TDF8532-audio-class-D-amplif.patch diff --git a/0345-ASoC-Intel-Skylake-Added-support-for-creating.patch b/0343-ASoC-Intel-Skylake-Added-support-for-creating.patch similarity index 100% rename from 0345-ASoC-Intel-Skylake-Added-support-for-creating.patch rename to 0343-ASoC-Intel-Skylake-Added-support-for-creating.patch diff --git a/0346-ASoC-Intel-boards-Remove-SSP1-codec-dai-link-.patch b/0344-ASoC-Intel-boards-Remove-SSP1-codec-dai-link-.patch similarity index 100% rename from 0346-ASoC-Intel-boards-Remove-SSP1-codec-dai-link-.patch rename to 0344-ASoC-Intel-boards-Remove-SSP1-codec-dai-link-.patch diff --git a/0347-WORKAROUND-FIX-Kconfigs-to-build-compile-with.patch b/0345-WORKAROUND-FIX-Kconfigs-to-build-compile-with.patch similarity index 100% rename from 0347-WORKAROUND-FIX-Kconfigs-to-build-compile-with.patch rename to 0345-WORKAROUND-FIX-Kconfigs-to-build-compile-with.patch diff --git a/0348-ASoC-Intel-Boards-FW-logging-DAI-links-for-BX.patch b/0346-ASoC-Intel-Boards-FW-logging-DAI-links-for-BX.patch similarity index 100% rename from 0348-ASoC-Intel-Boards-FW-logging-DAI-links-for-BX.patch rename to 0346-ASoC-Intel-Boards-FW-logging-DAI-links-for-BX.patch diff --git a/0349-ASoC-Intel-Board-DAI-links-for-probe-in-APL-m.patch b/0347-ASoC-Intel-Board-DAI-links-for-probe-in-APL-m.patch similarity index 100% rename from 0349-ASoC-Intel-Board-DAI-links-for-probe-in-APL-m.patch rename to 0347-ASoC-Intel-Board-DAI-links-for-probe-in-APL-m.patch diff --git a/0350-ASoC-Intel-Skylake-Probe-sequence-changes-bas.patch b/0348-ASoC-Intel-Skylake-Probe-sequence-changes-bas.patch similarity index 100% rename from 0350-ASoC-Intel-Skylake-Probe-sequence-changes-bas.patch rename to 0348-ASoC-Intel-Skylake-Probe-sequence-changes-bas.patch diff --git a/0351-ASoC-Intel-Skylake-Probe-DMA-release-for-extr.patch b/0349-ASoC-Intel-Skylake-Probe-DMA-release-for-extr.patch similarity index 100% rename from 0351-ASoC-Intel-Skylake-Probe-DMA-release-for-extr.patch rename to 0349-ASoC-Intel-Skylake-Probe-DMA-release-for-extr.patch diff --git a/0352-ASoC-Intel-Multiple-I-O-PCM-format-support-fo.patch b/0350-ASoC-Intel-Multiple-I-O-PCM-format-support-fo.patch similarity index 100% rename from 0352-ASoC-Intel-Multiple-I-O-PCM-format-support-fo.patch rename to 0350-ASoC-Intel-Multiple-I-O-PCM-format-support-fo.patch diff --git a/0353-ASoC-Intel-Skylake-Parse-manifest-data-to-fil.patch b/0351-ASoC-Intel-Skylake-Parse-manifest-data-to-fil.patch similarity index 100% rename from 0353-ASoC-Intel-Skylake-Parse-manifest-data-to-fil.patch rename to 0351-ASoC-Intel-Skylake-Parse-manifest-data-to-fil.patch diff --git a/0354-ASoC-Intel-Skylake-Add-support-for-always-on-.patch b/0352-ASoC-Intel-Skylake-Add-support-for-always-on-.patch similarity index 100% rename from 0354-ASoC-Intel-Skylake-Add-support-for-always-on-.patch rename to 0352-ASoC-Intel-Skylake-Add-support-for-always-on-.patch diff --git a/0355-ASoC-Intel-bxtn-Initialize-fw-tracing-window-.patch b/0353-ASoC-Intel-bxtn-Initialize-fw-tracing-window-.patch similarity index 100% rename from 0355-ASoC-Intel-bxtn-Initialize-fw-tracing-window-.patch rename to 0353-ASoC-Intel-bxtn-Initialize-fw-tracing-window-.patch diff --git a/0356-ASoC-Intel-Board-DAI-links-for-probe-in-GPMRB.patch b/0354-ASoC-Intel-Board-DAI-links-for-probe-in-GPMRB.patch similarity index 100% rename from 0356-ASoC-Intel-Board-DAI-links-for-probe-in-GPMRB.patch rename to 0354-ASoC-Intel-Board-DAI-links-for-probe-in-GPMRB.patch diff --git a/0357-ASoC-Intel-Boards-Add-FW-logging-DAI-links-fo.patch b/0355-ASoC-Intel-Boards-Add-FW-logging-DAI-links-fo.patch similarity index 100% rename from 0357-ASoC-Intel-Boards-Add-FW-logging-DAI-links-fo.patch rename to 0355-ASoC-Intel-Boards-Add-FW-logging-DAI-links-fo.patch diff --git a/0358-ASoC-Intel-Skylake-Send-correct-size-in-ipc-h.patch b/0356-ASoC-Intel-Skylake-Send-correct-size-in-ipc-h.patch similarity index 100% rename from 0358-ASoC-Intel-Skylake-Send-correct-size-in-ipc-h.patch rename to 0356-ASoC-Intel-Skylake-Send-correct-size-in-ipc-h.patch diff --git a/0359-ASoC-Intel-board-Add-support-for-HDMI-in-cnl_.patch b/0357-ASoC-Intel-board-Add-support-for-HDMI-in-cnl_.patch similarity index 100% rename from 0359-ASoC-Intel-board-Add-support-for-HDMI-in-cnl_.patch rename to 0357-ASoC-Intel-board-Add-support-for-HDMI-in-cnl_.patch diff --git a/0360-ASoC-Intel-Skylake-Support-for-DSP-exception-.patch b/0358-ASoC-Intel-Skylake-Support-for-DSP-exception-.patch similarity index 100% rename from 0360-ASoC-Intel-Skylake-Support-for-DSP-exception-.patch rename to 0358-ASoC-Intel-Skylake-Support-for-DSP-exception-.patch diff --git a/0361-ASoC-Intel-board-Separate-out-icl_rt274-from-.patch b/0359-ASoC-Intel-board-Separate-out-icl_rt274-from-.patch similarity index 100% rename from 0361-ASoC-Intel-board-Separate-out-icl_rt274-from-.patch rename to 0359-ASoC-Intel-board-Separate-out-icl_rt274-from-.patch diff --git a/0362-ASoC-Intel-Skylake-Removed-duplicate-IPC-call.patch b/0360-ASoC-Intel-Skylake-Removed-duplicate-IPC-call.patch similarity index 100% rename from 0362-ASoC-Intel-Skylake-Removed-duplicate-IPC-call.patch rename to 0360-ASoC-Intel-Skylake-Removed-duplicate-IPC-call.patch diff --git a/0363-ASoC-Intel-Skylake-Notify-topology-changes.patch b/0361-ASoC-Intel-Skylake-Notify-topology-changes.patch similarity index 100% rename from 0363-ASoC-Intel-Skylake-Notify-topology-changes.patch rename to 0361-ASoC-Intel-Skylake-Notify-topology-changes.patch diff --git a/0364-ASoC-rt700-Remove-unused-variables.patch b/0362-ASoC-rt700-Remove-unused-variables.patch similarity index 100% rename from 0364-ASoC-rt700-Remove-unused-variables.patch rename to 0362-ASoC-rt700-Remove-unused-variables.patch diff --git a/0365-ASoC-rt700-Remove-prints-used-for-debugging.patch b/0363-ASoC-rt700-Remove-prints-used-for-debugging.patch similarity index 100% rename from 0365-ASoC-rt700-Remove-prints-used-for-debugging.patch rename to 0363-ASoC-rt700-Remove-prints-used-for-debugging.patch diff --git a/0366-ASoC-tdf8532-Fix-compilation-warnings.patch b/0364-ASoC-tdf8532-Fix-compilation-warnings.patch similarity index 100% rename from 0366-ASoC-tdf8532-Fix-compilation-warnings.patch rename to 0364-ASoC-tdf8532-Fix-compilation-warnings.patch diff --git a/0367-ASoC-Intel-CNL-Remove-larger-frame-size-warni.patch b/0365-ASoC-Intel-CNL-Remove-larger-frame-size-warni.patch similarity index 100% rename from 0367-ASoC-Intel-CNL-Remove-larger-frame-size-warni.patch rename to 0365-ASoC-Intel-CNL-Remove-larger-frame-size-warni.patch diff --git a/0368-ASoC-Intel-Skylake-Add-support-for-module-not.patch b/0366-ASoC-Intel-Skylake-Add-support-for-module-not.patch similarity index 100% rename from 0368-ASoC-Intel-Skylake-Add-support-for-module-not.patch rename to 0366-ASoC-Intel-Skylake-Add-support-for-module-not.patch diff --git a/0369-ASoC-Intel-Board-Add-pm_ops-to-fix-suspend-re.patch b/0367-ASoC-Intel-Board-Add-pm_ops-to-fix-suspend-re.patch similarity index 100% rename from 0369-ASoC-Intel-Board-Add-pm_ops-to-fix-suspend-re.patch rename to 0367-ASoC-Intel-Board-Add-pm_ops-to-fix-suspend-re.patch diff --git a/0370-ASoC-rt700-Remove-unused-variable.patch b/0368-ASoC-rt700-Remove-unused-variable.patch similarity index 100% rename from 0370-ASoC-rt700-Remove-unused-variable.patch rename to 0368-ASoC-rt700-Remove-unused-variable.patch diff --git a/0371-ASoC-Intel-board-Remove-unused-function-cnl_d.patch b/0369-ASoC-Intel-board-Remove-unused-function-cnl_d.patch similarity index 100% rename from 0371-ASoC-Intel-board-Remove-unused-function-cnl_d.patch rename to 0369-ASoC-Intel-board-Remove-unused-function-cnl_d.patch diff --git a/0372-ASoC-Intel-Skylake-Move-prototype-to-appropri.patch b/0370-ASoC-Intel-Skylake-Move-prototype-to-appropri.patch similarity index 100% rename from 0372-ASoC-Intel-Skylake-Move-prototype-to-appropri.patch rename to 0370-ASoC-Intel-Skylake-Move-prototype-to-appropri.patch diff --git a/0373-ASoC-Intel-cnl-Move-d0i-03-ops-after-cnl_load.patch b/0371-ASoC-Intel-cnl-Move-d0i-03-ops-after-cnl_load.patch similarity index 100% rename from 0373-ASoC-Intel-cnl-Move-d0i-03-ops-after-cnl_load.patch rename to 0371-ASoC-Intel-cnl-Move-d0i-03-ops-after-cnl_load.patch diff --git a/0374-ASoC-Intel-Skylake-Support-for-Probe-DMA-Buff.patch b/0372-ASoC-Intel-Skylake-Support-for-Probe-DMA-Buff.patch similarity index 100% rename from 0374-ASoC-Intel-Skylake-Support-for-Probe-DMA-Buff.patch rename to 0372-ASoC-Intel-Skylake-Support-for-Probe-DMA-Buff.patch diff --git a/0375-ASoC-Intel-Skylake-Add-a-separate-module-type.patch b/0373-ASoC-Intel-Skylake-Add-a-separate-module-type.patch similarity index 100% rename from 0375-ASoC-Intel-Skylake-Add-a-separate-module-type.patch rename to 0373-ASoC-Intel-Skylake-Add-a-separate-module-type.patch diff --git a/0376-ASoC-Intel-Skylake-Add-support-for-DMA-Buffer.patch b/0374-ASoC-Intel-Skylake-Add-support-for-DMA-Buffer.patch similarity index 100% rename from 0376-ASoC-Intel-Skylake-Add-support-for-DMA-Buffer.patch rename to 0374-ASoC-Intel-Skylake-Add-support-for-DMA-Buffer.patch diff --git a/0377-ASoC-Intel-Set-all-I2S-ports-to-slave-mode-af.patch b/0375-ASoC-Intel-Set-all-I2S-ports-to-slave-mode-af.patch similarity index 100% rename from 0377-ASoC-Intel-Set-all-I2S-ports-to-slave-mode-af.patch rename to 0375-ASoC-Intel-Set-all-I2S-ports-to-slave-mode-af.patch diff --git a/0378-ASoC-Intel-Skylake-Return-default-sampling-ra.patch b/0376-ASoC-Intel-Skylake-Return-default-sampling-ra.patch similarity index 100% rename from 0378-ASoC-Intel-Skylake-Return-default-sampling-ra.patch rename to 0376-ASoC-Intel-Skylake-Return-default-sampling-ra.patch diff --git a/0379-ASoC-Intel-Board-Add-fixup-for-32-bit-masking.patch b/0377-ASoC-Intel-Board-Add-fixup-for-32-bit-masking.patch similarity index 100% rename from 0379-ASoC-Intel-Board-Add-fixup-for-32-bit-masking.patch rename to 0377-ASoC-Intel-Board-Add-fixup-for-32-bit-masking.patch diff --git a/0380-ASoC-Intel-Skylake-Add-support-for-GAIN-modul.patch b/0378-ASoC-Intel-Skylake-Add-support-for-GAIN-modul.patch similarity index 100% rename from 0380-ASoC-Intel-Skylake-Add-support-for-GAIN-modul.patch rename to 0378-ASoC-Intel-Skylake-Add-support-for-GAIN-modul.patch diff --git a/0381-ASoC-Intel-Skylake-Fix-codec_dai-NULL-pointer.patch b/0379-ASoC-Intel-Skylake-Fix-codec_dai-NULL-pointer.patch similarity index 100% rename from 0381-ASoC-Intel-Skylake-Fix-codec_dai-NULL-pointer.patch rename to 0379-ASoC-Intel-Skylake-Fix-codec_dai-NULL-pointer.patch diff --git a/0382-ASoC-Intel-Skylake-Check-for-word_length_buff.patch b/0380-ASoC-Intel-Skylake-Check-for-word_length_buff.patch similarity index 100% rename from 0382-ASoC-Intel-Skylake-Check-for-word_length_buff.patch rename to 0380-ASoC-Intel-Skylake-Check-for-word_length_buff.patch diff --git a/0383-ASoC-Intel-Skylake-Fix-cnl_sdw_startup-error-.patch b/0381-ASoC-Intel-Skylake-Fix-cnl_sdw_startup-error-.patch similarity index 100% rename from 0383-ASoC-Intel-Skylake-Fix-cnl_sdw_startup-error-.patch rename to 0381-ASoC-Intel-Skylake-Fix-cnl_sdw_startup-error-.patch diff --git a/0384-ASoC-Intel-Skylake-Fix-error-handling-in-cnl_.patch b/0382-ASoC-Intel-Skylake-Fix-error-handling-in-cnl_.patch similarity index 100% rename from 0384-ASoC-Intel-Skylake-Fix-error-handling-in-cnl_.patch rename to 0382-ASoC-Intel-Skylake-Fix-error-handling-in-cnl_.patch diff --git a/0385-ASoC-Intel-Skylake-Check-for-NHLT-ACPI-header.patch b/0383-ASoC-Intel-Skylake-Check-for-NHLT-ACPI-header.patch similarity index 100% rename from 0385-ASoC-Intel-Skylake-Check-for-NHLT-ACPI-header.patch rename to 0383-ASoC-Intel-Skylake-Check-for-NHLT-ACPI-header.patch diff --git a/0386-ASoC-Intel-Skylake-Fix-Max-DSP-MCPS-value.patch b/0384-ASoC-Intel-Skylake-Fix-Max-DSP-MCPS-value.patch similarity index 100% rename from 0386-ASoC-Intel-Skylake-Fix-Max-DSP-MCPS-value.patch rename to 0384-ASoC-Intel-Skylake-Fix-Max-DSP-MCPS-value.patch diff --git a/0387-ASoC-Intel-Skylake-Fix-bug-in-module-id-retri.patch b/0385-ASoC-Intel-Skylake-Fix-bug-in-module-id-retri.patch similarity index 100% rename from 0387-ASoC-Intel-Skylake-Fix-bug-in-module-id-retri.patch rename to 0385-ASoC-Intel-Skylake-Fix-bug-in-module-id-retri.patch diff --git a/0388-ASoC-Intel-Skylake-Fix-incorrect-in_fmt-and-o.patch b/0386-ASoC-Intel-Skylake-Fix-incorrect-in_fmt-and-o.patch similarity index 100% rename from 0388-ASoC-Intel-Skylake-Fix-incorrect-in_fmt-and-o.patch rename to 0386-ASoC-Intel-Skylake-Fix-incorrect-in_fmt-and-o.patch diff --git a/0389-ASoC-Intel-Skylake-Avoid-global-kcontrol-poin.patch b/0387-ASoC-Intel-Skylake-Avoid-global-kcontrol-poin.patch similarity index 100% rename from 0389-ASoC-Intel-Skylake-Avoid-global-kcontrol-poin.patch rename to 0387-ASoC-Intel-Skylake-Avoid-global-kcontrol-poin.patch diff --git a/0390-ASoC-Intel-Skylake-Return-default-sampling-ra.patch b/0388-ASoC-Intel-Skylake-Return-default-sampling-ra.patch similarity index 100% rename from 0390-ASoC-Intel-Skylake-Return-default-sampling-ra.patch rename to 0388-ASoC-Intel-Skylake-Return-default-sampling-ra.patch diff --git a/0391-ASoC-Intel-Skylake-Add-ULL-machine-driver-ent.patch b/0389-ASoC-Intel-Skylake-Add-ULL-machine-driver-ent.patch similarity index 100% rename from 0391-ASoC-Intel-Skylake-Add-ULL-machine-driver-ent.patch rename to 0389-ASoC-Intel-Skylake-Add-ULL-machine-driver-ent.patch diff --git a/0392-ASoC-Intel-Board-Add-BXTP-MRB-ULL-machine-dri.patch b/0390-ASoC-Intel-Board-Add-BXTP-MRB-ULL-machine-dri.patch similarity index 100% rename from 0392-ASoC-Intel-Board-Add-BXTP-MRB-ULL-machine-dri.patch rename to 0390-ASoC-Intel-Board-Add-BXTP-MRB-ULL-machine-dri.patch diff --git a/0393-ASoC-Intel-Skylake-Add-support-to-configure-A.patch b/0391-ASoC-Intel-Skylake-Add-support-to-configure-A.patch similarity index 100% rename from 0393-ASoC-Intel-Skylake-Add-support-to-configure-A.patch rename to 0391-ASoC-Intel-Skylake-Add-support-to-configure-A.patch diff --git a/0394-WA-Disable-irq-in-rt274.patch b/0392-WA-Disable-irq-in-rt274.patch similarity index 100% rename from 0394-WA-Disable-irq-in-rt274.patch rename to 0392-WA-Disable-irq-in-rt274.patch diff --git a/0395-ASoC-Intel-Skylake-Replace-modulus-operator-w.patch b/0393-ASoC-Intel-Skylake-Replace-modulus-operator-w.patch similarity index 100% rename from 0395-ASoC-Intel-Skylake-Replace-modulus-operator-w.patch rename to 0393-ASoC-Intel-Skylake-Replace-modulus-operator-w.patch diff --git a/0396-ASoC-Intel-Skylake-Poll-on-ADSPCS.CSTALL-bit-.patch b/0394-ASoC-Intel-Skylake-Poll-on-ADSPCS.CSTALL-bit-.patch similarity index 100% rename from 0396-ASoC-Intel-Skylake-Poll-on-ADSPCS.CSTALL-bit-.patch rename to 0394-ASoC-Intel-Skylake-Poll-on-ADSPCS.CSTALL-bit-.patch diff --git a/0397-ASoC-Intel-Skylake-Add-delay-during-DSP-core-.patch b/0395-ASoC-Intel-Skylake-Add-delay-during-DSP-core-.patch similarity index 100% rename from 0397-ASoC-Intel-Skylake-Add-delay-during-DSP-core-.patch rename to 0395-ASoC-Intel-Skylake-Add-delay-during-DSP-core-.patch diff --git a/0398-ALSA-hda-Make-sure-DMA-is-stopped-by-reading-.patch b/0396-ALSA-hda-Make-sure-DMA-is-stopped-by-reading-.patch similarity index 100% rename from 0398-ALSA-hda-Make-sure-DMA-is-stopped-by-reading-.patch rename to 0396-ALSA-hda-Make-sure-DMA-is-stopped-by-reading-.patch diff --git a/0399-ALSA-hda-Make-sure-DMA-is-started-by-reading-.patch b/0397-ALSA-hda-Make-sure-DMA-is-started-by-reading-.patch similarity index 100% rename from 0399-ALSA-hda-Make-sure-DMA-is-started-by-reading-.patch rename to 0397-ALSA-hda-Make-sure-DMA-is-started-by-reading-.patch diff --git a/0400-ALSA-hda-Log-HDA-Hardware-related-errors.patch b/0398-ALSA-hda-Log-HDA-Hardware-related-errors.patch similarity index 100% rename from 0400-ALSA-hda-Log-HDA-Hardware-related-errors.patch rename to 0398-ALSA-hda-Log-HDA-Hardware-related-errors.patch diff --git a/0401-ALSA-hda-check-if-stream-is-stopped-in-snd_hd.patch b/0399-ALSA-hda-check-if-stream-is-stopped-in-snd_hd.patch similarity index 100% rename from 0401-ALSA-hda-check-if-stream-is-stopped-in-snd_hd.patch rename to 0399-ALSA-hda-check-if-stream-is-stopped-in-snd_hd.patch diff --git a/0402-ASoC-Intel-Skylake-Support-multiple-format-co.patch b/0400-ASoC-Intel-Skylake-Support-multiple-format-co.patch similarity index 100% rename from 0402-ASoC-Intel-Skylake-Support-multiple-format-co.patch rename to 0400-ASoC-Intel-Skylake-Support-multiple-format-co.patch diff --git a/0403-SoundWire-Fix-CRC8-dependency.patch b/0401-SoundWire-Fix-CRC8-dependency.patch similarity index 100% rename from 0403-SoundWire-Fix-CRC8-dependency.patch rename to 0401-SoundWire-Fix-CRC8-dependency.patch diff --git a/0404-soundwire-Change-programming-sequence-for-BRA.patch b/0402-soundwire-Change-programming-sequence-for-BRA.patch similarity index 100% rename from 0404-soundwire-Change-programming-sequence-for-BRA.patch rename to 0402-soundwire-Change-programming-sequence-for-BRA.patch diff --git a/0405-WORKAROUND-ASoC-tdf8532-Add-delay-while-readi.patch b/0403-WORKAROUND-ASoC-tdf8532-Add-delay-while-readi.patch similarity index 100% rename from 0405-WORKAROUND-ASoC-tdf8532-Add-delay-while-readi.patch rename to 0403-WORKAROUND-ASoC-tdf8532-Add-delay-while-readi.patch diff --git a/0406-SoundWire-Perform-clock-exit-by-setting-clock.patch b/0404-SoundWire-Perform-clock-exit-by-setting-clock.patch similarity index 100% rename from 0406-SoundWire-Perform-clock-exit-by-setting-clock.patch rename to 0404-SoundWire-Perform-clock-exit-by-setting-clock.patch diff --git a/0407-ASoC-Intel-Skylake-Add-API-to-reset-private-i.patch b/0405-ASoC-Intel-Skylake-Add-API-to-reset-private-i.patch similarity index 100% rename from 0407-ASoC-Intel-Skylake-Add-API-to-reset-private-i.patch rename to 0405-ASoC-Intel-Skylake-Add-API-to-reset-private-i.patch diff --git a/0408-ASoC-Intel-Skylake-Add-an-API-to-reset-the-us.patch b/0406-ASoC-Intel-Skylake-Add-an-API-to-reset-the-us.patch similarity index 100% rename from 0408-ASoC-Intel-Skylake-Add-an-API-to-reset-the-us.patch rename to 0406-ASoC-Intel-Skylake-Add-an-API-to-reset-the-us.patch diff --git a/0409-ASoC-Intel-Skylake-Fix-the-is_dsp_running-to-.patch b/0407-ASoC-Intel-Skylake-Fix-the-is_dsp_running-to-.patch similarity index 100% rename from 0409-ASoC-Intel-Skylake-Fix-the-is_dsp_running-to-.patch rename to 0407-ASoC-Intel-Skylake-Fix-the-is_dsp_running-to-.patch diff --git a/0410-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch b/0408-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch similarity index 100% rename from 0410-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch rename to 0408-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch diff --git a/0411-REVERTME-ASoC-Intel-CNL-Fix-for-the-firmware-.patch b/0409-REVERTME-ASoC-Intel-CNL-Fix-for-the-firmware-.patch similarity index 100% rename from 0411-REVERTME-ASoC-Intel-CNL-Fix-for-the-firmware-.patch rename to 0409-REVERTME-ASoC-Intel-CNL-Fix-for-the-firmware-.patch diff --git a/0412-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch b/0410-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch similarity index 100% rename from 0412-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch rename to 0410-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch diff --git a/0413-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch b/0411-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch similarity index 100% rename from 0413-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch rename to 0411-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch diff --git a/0414-ASoC-Intel-Skylake-Update-gain-interface-stru.patch b/0412-ASoC-Intel-Skylake-Update-gain-interface-stru.patch similarity index 100% rename from 0414-ASoC-Intel-Skylake-Update-gain-interface-stru.patch rename to 0412-ASoC-Intel-Skylake-Update-gain-interface-stru.patch diff --git a/0415-ASoC-Intel-Skylake-Read-extended-crash-dump-i.patch b/0413-ASoC-Intel-Skylake-Read-extended-crash-dump-i.patch similarity index 100% rename from 0415-ASoC-Intel-Skylake-Read-extended-crash-dump-i.patch rename to 0413-ASoC-Intel-Skylake-Read-extended-crash-dump-i.patch diff --git a/0416-ASoC-Intel-Skylake-Fix-issues-in-ADSP-Extende.patch b/0414-ASoC-Intel-Skylake-Fix-issues-in-ADSP-Extende.patch similarity index 100% rename from 0416-ASoC-Intel-Skylake-Fix-issues-in-ADSP-Extende.patch rename to 0414-ASoC-Intel-Skylake-Fix-issues-in-ADSP-Extende.patch diff --git a/0417-ASoC-Intel-kconfig-Make-drivers-build-on-x86-.patch b/0415-ASoC-Intel-kconfig-Make-drivers-build-on-x86-.patch similarity index 100% rename from 0417-ASoC-Intel-kconfig-Make-drivers-build-on-x86-.patch rename to 0415-ASoC-Intel-kconfig-Make-drivers-build-on-x86-.patch diff --git a/0418-ASoC-tdf8532-Fix-Audio-memory-leakage-at-boot.patch b/0416-ASoC-tdf8532-Fix-Audio-memory-leakage-at-boot.patch similarity index 100% rename from 0418-ASoC-tdf8532-Fix-Audio-memory-leakage-at-boot.patch rename to 0416-ASoC-tdf8532-Fix-Audio-memory-leakage-at-boot.patch diff --git a/0419-ASoC-Intel-Skylake-Fix-Audio-memory-leakage-a.patch b/0417-ASoC-Intel-Skylake-Fix-Audio-memory-leakage-a.patch similarity index 100% rename from 0419-ASoC-Intel-Skylake-Fix-Audio-memory-leakage-a.patch rename to 0417-ASoC-Intel-Skylake-Fix-Audio-memory-leakage-a.patch diff --git a/0420-ASoC-Intel-Skylake-Add-support-to-notify-reso.patch b/0418-ASoC-Intel-Skylake-Add-support-to-notify-reso.patch similarity index 100% rename from 0420-ASoC-Intel-Skylake-Add-support-to-notify-reso.patch rename to 0418-ASoC-Intel-Skylake-Add-support-to-notify-reso.patch diff --git a/0421-ASoC-Intel-BXT-Retry-FW-download-sequence.patch b/0419-ASoC-Intel-BXT-Retry-FW-download-sequence.patch similarity index 100% rename from 0421-ASoC-Intel-BXT-Retry-FW-download-sequence.patch rename to 0419-ASoC-Intel-BXT-Retry-FW-download-sequence.patch diff --git a/0422-ASoC-Intel-Skylake-Check-for-pointer-validity.patch b/0420-ASoC-Intel-Skylake-Check-for-pointer-validity.patch similarity index 100% rename from 0422-ASoC-Intel-Skylake-Check-for-pointer-validity.patch rename to 0420-ASoC-Intel-Skylake-Check-for-pointer-validity.patch diff --git a/0423-ASoC-Intel-Skylake-Fix-logs_core-array-size.patch b/0421-ASoC-Intel-Skylake-Fix-logs_core-array-size.patch similarity index 100% rename from 0423-ASoC-Intel-Skylake-Fix-logs_core-array-size.patch rename to 0421-ASoC-Intel-Skylake-Fix-logs_core-array-size.patch diff --git a/0424-ASoC-Intel-Skylake-Replace-strcpy-with-strlcp.patch b/0422-ASoC-Intel-Skylake-Replace-strcpy-with-strlcp.patch similarity index 100% rename from 0424-ASoC-Intel-Skylake-Replace-strcpy-with-strlcp.patch rename to 0422-ASoC-Intel-Skylake-Replace-strcpy-with-strlcp.patch diff --git a/0425-ASoC-Intel-Boards-Replace-codec-to-component-.patch b/0423-ASoC-Intel-Boards-Replace-codec-to-component-.patch similarity index 100% rename from 0425-ASoC-Intel-Boards-Replace-codec-to-component-.patch rename to 0423-ASoC-Intel-Boards-Replace-codec-to-component-.patch diff --git a/0426-ASoC-Intel-Skylake-Set-dsp-cores-off-during-s.patch b/0424-ASoC-Intel-Skylake-Set-dsp-cores-off-during-s.patch similarity index 100% rename from 0426-ASoC-Intel-Skylake-Set-dsp-cores-off-during-s.patch rename to 0424-ASoC-Intel-Skylake-Set-dsp-cores-off-during-s.patch diff --git a/0427-ASoC-Intel-Disable-dsp-core-in-skl_shutdown.patch b/0425-ASoC-Intel-Disable-dsp-core-in-skl_shutdown.patch similarity index 100% rename from 0427-ASoC-Intel-Disable-dsp-core-in-skl_shutdown.patch rename to 0425-ASoC-Intel-Disable-dsp-core-in-skl_shutdown.patch diff --git a/0428-ASoC-soc-pcm-Fix-FE-and-BE-race-when-accessin.patch b/0426-ASoC-soc-pcm-Fix-FE-and-BE-race-when-accessin.patch similarity index 100% rename from 0428-ASoC-soc-pcm-Fix-FE-and-BE-race-when-accessin.patch rename to 0426-ASoC-soc-pcm-Fix-FE-and-BE-race-when-accessin.patch diff --git a/0429-Revert-ASoC-tdf8532-Fix-Audio-memory-leakage-.patch b/0427-Revert-ASoC-tdf8532-Fix-Audio-memory-leakage-.patch similarity index 100% rename from 0429-Revert-ASoC-tdf8532-Fix-Audio-memory-leakage-.patch rename to 0427-Revert-ASoC-tdf8532-Fix-Audio-memory-leakage-.patch diff --git a/0430-ASoC-tdf8532-fix-memleak-in-tdf8532_wait_stat.patch b/0428-ASoC-tdf8532-fix-memleak-in-tdf8532_wait_stat.patch similarity index 100% rename from 0430-ASoC-tdf8532-fix-memleak-in-tdf8532_wait_stat.patch rename to 0428-ASoC-tdf8532-fix-memleak-in-tdf8532_wait_stat.patch diff --git a/0431-ASoC-tdf8532-right-free-allocated-space-in-ca.patch b/0429-ASoC-tdf8532-right-free-allocated-space-in-ca.patch similarity index 100% rename from 0431-ASoC-tdf8532-right-free-allocated-space-in-ca.patch rename to 0429-ASoC-tdf8532-right-free-allocated-space-in-ca.patch diff --git a/0432-ASoC-Intel-Skylake-Add-kabylake-R-machine-dri.patch b/0430-ASoC-Intel-Skylake-Add-kabylake-R-machine-dri.patch similarity index 100% rename from 0432-ASoC-Intel-Skylake-Add-kabylake-R-machine-dri.patch rename to 0430-ASoC-Intel-Skylake-Add-kabylake-R-machine-dri.patch diff --git a/0433-ASoC-Intel-Boards-Add-machine-driver-for-Kaby.patch b/0431-ASoC-Intel-Boards-Add-machine-driver-for-Kaby.patch similarity index 100% rename from 0433-ASoC-Intel-Boards-Add-machine-driver-for-Kaby.patch rename to 0431-ASoC-Intel-Boards-Add-machine-driver-for-Kaby.patch diff --git a/0434-ASoC-rt298-Set-jack-combo-for-kabylake-R.patch b/0432-ASoC-rt298-Set-jack-combo-for-kabylake-R.patch similarity index 100% rename from 0434-ASoC-rt298-Set-jack-combo-for-kabylake-R.patch rename to 0432-ASoC-rt298-Set-jack-combo-for-kabylake-R.patch diff --git a/0435-ASoC-Intel-Boards-Add-machine-driver-for-RSE-.patch b/0433-ASoC-Intel-Boards-Add-machine-driver-for-RSE-.patch similarity index 100% rename from 0435-ASoC-Intel-Boards-Add-machine-driver-for-RSE-.patch rename to 0433-ASoC-Intel-Boards-Add-machine-driver-for-RSE-.patch diff --git a/0436-ASoC-Intel-Boards-Add-machine-driver-for-HU-t.patch b/0434-ASoC-Intel-Boards-Add-machine-driver-for-HU-t.patch similarity index 100% rename from 0436-ASoC-Intel-Boards-Add-machine-driver-for-HU-t.patch rename to 0434-ASoC-Intel-Boards-Add-machine-driver-for-HU-t.patch diff --git a/0437-ASoC-Intel-Boards-Add-a-machine-driver-for-BX.patch b/0435-ASoC-Intel-Boards-Add-a-machine-driver-for-BX.patch similarity index 100% rename from 0437-ASoC-Intel-Boards-Add-a-machine-driver-for-BX.patch rename to 0435-ASoC-Intel-Boards-Add-a-machine-driver-for-BX.patch diff --git a/0438-ASoC-Intel-Boards-Add-machine-driver-for-gene.patch b/0436-ASoC-Intel-Boards-Add-machine-driver-for-gene.patch similarity index 100% rename from 0438-ASoC-Intel-Boards-Add-machine-driver-for-gene.patch rename to 0436-ASoC-Intel-Boards-Add-machine-driver-for-gene.patch diff --git a/0439-ASoC-Intel-Skylake-Add-RSE-HU-M3-and-generic-.patch b/0437-ASoC-Intel-Skylake-Add-RSE-HU-M3-and-generic-.patch similarity index 100% rename from 0439-ASoC-Intel-Skylake-Add-RSE-HU-M3-and-generic-.patch rename to 0437-ASoC-Intel-Skylake-Add-RSE-HU-M3-and-generic-.patch diff --git a/0440-ASoC-Intel-Skylake-Resolve-load-DMA-control-c.patch b/0438-ASoC-Intel-Skylake-Resolve-load-DMA-control-c.patch similarity index 100% rename from 0440-ASoC-Intel-Skylake-Resolve-load-DMA-control-c.patch rename to 0438-ASoC-Intel-Skylake-Resolve-load-DMA-control-c.patch diff --git a/0441-ASoC-Intel-Skylake-Improve-BXT-P-machine-driv.patch b/0439-ASoC-Intel-Skylake-Improve-BXT-P-machine-driv.patch similarity index 100% rename from 0441-ASoC-Intel-Skylake-Improve-BXT-P-machine-driv.patch rename to 0439-ASoC-Intel-Skylake-Improve-BXT-P-machine-driv.patch diff --git a/0442-ASoC-Intel-common-Provide-an-interface-to-sen.patch b/0440-ASoC-Intel-common-Provide-an-interface-to-sen.patch similarity index 100% rename from 0442-ASoC-Intel-common-Provide-an-interface-to-sen.patch rename to 0440-ASoC-Intel-common-Provide-an-interface-to-sen.patch diff --git a/0443-ASoC-Intel-BXT-Remove-compile-warnings.patch b/0441-ASoC-Intel-BXT-Remove-compile-warnings.patch similarity index 100% rename from 0443-ASoC-Intel-BXT-Remove-compile-warnings.patch rename to 0441-ASoC-Intel-BXT-Remove-compile-warnings.patch diff --git a/0444-ASoC-topology-Increase-SND_SOC_TPLG_NUM_TEXTS.patch b/0442-ASoC-topology-Increase-SND_SOC_TPLG_NUM_TEXTS.patch similarity index 100% rename from 0444-ASoC-topology-Increase-SND_SOC_TPLG_NUM_TEXTS.patch rename to 0442-ASoC-topology-Increase-SND_SOC_TPLG_NUM_TEXTS.patch diff --git a/0445-ASoC-Intel-board-Add-support-for-FE-dynamic-d.patch b/0443-ASoC-Intel-board-Add-support-for-FE-dynamic-d.patch similarity index 100% rename from 0445-ASoC-Intel-board-Add-support-for-FE-dynamic-d.patch rename to 0443-ASoC-Intel-board-Add-support-for-FE-dynamic-d.patch diff --git a/0446-ASoC-Intel-Skylake-Enable-use_tplg_pcm-flag-f.patch b/0444-ASoC-Intel-Skylake-Enable-use_tplg_pcm-flag-f.patch similarity index 100% rename from 0446-ASoC-Intel-Skylake-Enable-use_tplg_pcm-flag-f.patch rename to 0444-ASoC-Intel-Skylake-Enable-use_tplg_pcm-flag-f.patch diff --git a/0447-ASoC-Intel-Fix-race-condition-in-IPC-rx-list.patch b/0445-ASoC-Intel-Fix-race-condition-in-IPC-rx-list.patch similarity index 100% rename from 0447-ASoC-Intel-Fix-race-condition-in-IPC-rx-list.patch rename to 0445-ASoC-Intel-Fix-race-condition-in-IPC-rx-list.patch diff --git a/0448-ASoC-Intel-Skylake-pipeline-needs-to-be-reset.patch b/0446-ASoC-Intel-Skylake-pipeline-needs-to-be-reset.patch similarity index 100% rename from 0448-ASoC-Intel-Skylake-pipeline-needs-to-be-reset.patch rename to 0446-ASoC-Intel-Skylake-pipeline-needs-to-be-reset.patch diff --git a/0449-Revert-ASoC-topology-Increase-SND_SOC_TPLG_NU.patch b/0447-Revert-ASoC-topology-Increase-SND_SOC_TPLG_NU.patch similarity index 100% rename from 0449-Revert-ASoC-topology-Increase-SND_SOC_TPLG_NU.patch rename to 0447-Revert-ASoC-topology-Increase-SND_SOC_TPLG_NU.patch diff --git a/0450-ASoC-Intel-Allow-for-firmware-load-retry.patch b/0448-ASoC-Intel-Allow-for-firmware-load-retry.patch similarity index 100% rename from 0450-ASoC-Intel-Allow-for-firmware-load-retry.patch rename to 0448-ASoC-Intel-Allow-for-firmware-load-retry.patch diff --git a/0451-Revert-ASoC-core-Do-not-return-for-dummy-code.patch b/0449-Revert-ASoC-core-Do-not-return-for-dummy-code.patch similarity index 100% rename from 0451-Revert-ASoC-core-Do-not-return-for-dummy-code.patch rename to 0449-Revert-ASoC-core-Do-not-return-for-dummy-code.patch diff --git a/0452-ASoC-Intel-Skylake-Align-with-v4.18-rc1-linux.patch b/0450-ASoC-Intel-Skylake-Align-with-v4.18-rc1-linux.patch similarity index 100% rename from 0452-ASoC-Intel-Skylake-Align-with-v4.18-rc1-linux.patch rename to 0450-ASoC-Intel-Skylake-Align-with-v4.18-rc1-linux.patch diff --git a/0453-ASoC-Intel-Move-bxt-machine-drv-tables-to-com.patch b/0451-ASoC-Intel-Move-bxt-machine-drv-tables-to-com.patch similarity index 100% rename from 0453-ASoC-Intel-Move-bxt-machine-drv-tables-to-com.patch rename to 0451-ASoC-Intel-Move-bxt-machine-drv-tables-to-com.patch diff --git a/0454-ASoC-Intel-Move-kbl-machine-drv-tables-to-com.patch b/0452-ASoC-Intel-Move-kbl-machine-drv-tables-to-com.patch similarity index 100% rename from 0454-ASoC-Intel-Move-kbl-machine-drv-tables-to-com.patch rename to 0452-ASoC-Intel-Move-kbl-machine-drv-tables-to-com.patch diff --git a/0455-ASoC-Intel-Move-skl-machine-drv-tables-to-com.patch b/0453-ASoC-Intel-Move-skl-machine-drv-tables-to-com.patch similarity index 100% rename from 0455-ASoC-Intel-Move-skl-machine-drv-tables-to-com.patch rename to 0453-ASoC-Intel-Move-skl-machine-drv-tables-to-com.patch diff --git a/0456-ASoC-Intel-Move-glk-machine-drv-tables-to-com.patch b/0454-ASoC-Intel-Move-glk-machine-drv-tables-to-com.patch similarity index 100% rename from 0456-ASoC-Intel-Move-glk-machine-drv-tables-to-com.patch rename to 0454-ASoC-Intel-Move-glk-machine-drv-tables-to-com.patch diff --git a/0457-ASoC-Intel-Move-icl-machine-drv-tables-to-com.patch b/0455-ASoC-Intel-Move-icl-machine-drv-tables-to-com.patch similarity index 100% rename from 0457-ASoC-Intel-Move-icl-machine-drv-tables-to-com.patch rename to 0455-ASoC-Intel-Move-icl-machine-drv-tables-to-com.patch diff --git a/0458-ASoC-Intel-Move-cnl-machine-drv-tables-to-com.patch b/0456-ASoC-Intel-Move-cnl-machine-drv-tables-to-com.patch similarity index 100% rename from 0458-ASoC-Intel-Move-cnl-machine-drv-tables-to-com.patch rename to 0456-ASoC-Intel-Move-cnl-machine-drv-tables-to-com.patch diff --git a/0459-ASoC-Intel-Skylake-validate-the-downloaded-fi.patch b/0457-ASoC-Intel-Skylake-validate-the-downloaded-fi.patch similarity index 100% rename from 0459-ASoC-Intel-Skylake-validate-the-downloaded-fi.patch rename to 0457-ASoC-Intel-Skylake-validate-the-downloaded-fi.patch diff --git a/0460-ASoC-Intel-Replace-hdac_ext_bus-usage-with-hd.patch b/0458-ASoC-Intel-Replace-hdac_ext_bus-usage-with-hd.patch similarity index 100% rename from 0460-ASoC-Intel-Replace-hdac_ext_bus-usage-with-hd.patch rename to 0458-ASoC-Intel-Replace-hdac_ext_bus-usage-with-hd.patch diff --git a/0461-REVERTME-Fix-no-audio-output-after-resume-fro.patch b/0459-REVERTME-Fix-no-audio-output-after-resume-fro.patch similarity index 100% rename from 0461-REVERTME-Fix-no-audio-output-after-resume-fro.patch rename to 0459-REVERTME-Fix-no-audio-output-after-resume-fro.patch diff --git a/0462-REVERTME-Increase-tdf8532-timeout-and-number-.patch b/0460-REVERTME-Increase-tdf8532-timeout-and-number-.patch similarity index 100% rename from 0462-REVERTME-Increase-tdf8532-timeout-and-number-.patch rename to 0460-REVERTME-Increase-tdf8532-timeout-and-number-.patch diff --git a/0463-fix-the-invalid-double-free-in-tdf8532-i2c-re.patch b/0461-fix-the-invalid-double-free-in-tdf8532-i2c-re.patch similarity index 100% rename from 0463-fix-the-invalid-double-free-in-tdf8532-i2c-re.patch rename to 0461-fix-the-invalid-double-free-in-tdf8532-i2c-re.patch diff --git a/0464-ASoC-Intel-Skylake-Restore-static-SSP5-BE-dec.patch b/0462-ASoC-Intel-Skylake-Restore-static-SSP5-BE-dec.patch similarity index 100% rename from 0464-ASoC-Intel-Skylake-Restore-static-SSP5-BE-dec.patch rename to 0462-ASoC-Intel-Skylake-Restore-static-SSP5-BE-dec.patch diff --git a/0465-Revert-ASoC-Intel-Skylake-validate-the-downlo.patch b/0463-Revert-ASoC-Intel-Skylake-validate-the-downlo.patch similarity index 100% rename from 0465-Revert-ASoC-Intel-Skylake-validate-the-downlo.patch rename to 0463-Revert-ASoC-Intel-Skylake-validate-the-downlo.patch diff --git a/0466-ASoC-Intel-BXT-Print-version-details-of-ADSP-.patch b/0464-ASoC-Intel-BXT-Print-version-details-of-ADSP-.patch similarity index 100% rename from 0466-ASoC-Intel-BXT-Print-version-details-of-ADSP-.patch rename to 0464-ASoC-Intel-BXT-Print-version-details-of-ADSP-.patch diff --git a/0467-ASoC-tdf8532-add-crit-sections.patch b/0465-ASoC-tdf8532-add-crit-sections.patch similarity index 100% rename from 0467-ASoC-tdf8532-add-crit-sections.patch rename to 0465-ASoC-tdf8532-add-crit-sections.patch diff --git a/0468-ASoC-Intel-bxtp-BXT_FW_INIT_RETRY-set-to-10.patch b/0466-ASoC-Intel-bxtp-BXT_FW_INIT_RETRY-set-to-10.patch similarity index 100% rename from 0468-ASoC-Intel-bxtp-BXT_FW_INIT_RETRY-set-to-10.patch rename to 0466-ASoC-Intel-bxtp-BXT_FW_INIT_RETRY-set-to-10.patch diff --git a/0469-ASoC-Intel-Skylake-Fix-for-lockup-in-sst_ipc_.patch b/0467-ASoC-Intel-Skylake-Fix-for-lockup-in-sst_ipc_.patch similarity index 100% rename from 0469-ASoC-Intel-Skylake-Fix-for-lockup-in-sst_ipc_.patch rename to 0467-ASoC-Intel-Skylake-Fix-for-lockup-in-sst_ipc_.patch diff --git a/0470-ASoC-Intel-Skylake-Set-DUM-bit-in-EM2-registe.patch b/0468-ASoC-Intel-Skylake-Set-DUM-bit-in-EM2-registe.patch similarity index 100% rename from 0470-ASoC-Intel-Skylake-Set-DUM-bit-in-EM2-registe.patch rename to 0468-ASoC-Intel-Skylake-Set-DUM-bit-in-EM2-registe.patch diff --git a/0471-PCI-add-pci_devices_ignore-cmdline-optio.patch b/0469-PCI-add-pci_devices_ignore-cmdline-optio.patch similarity index 100% rename from 0471-PCI-add-pci_devices_ignore-cmdline-optio.patch rename to 0469-PCI-add-pci_devices_ignore-cmdline-optio.patch diff --git a/0472-x86-add-ACRN-hypervisor-guest.patch b/0470-x86-add-ACRN-hypervisor-guest.patch similarity index 100% rename from 0472-x86-add-ACRN-hypervisor-guest.patch rename to 0470-x86-add-ACRN-hypervisor-guest.patch diff --git a/0473-VHM-add-vhm-char-device-driver.patch b/0471-VHM-add-vhm-char-device-driver.patch similarity index 100% rename from 0473-VHM-add-vhm-char-device-driver.patch rename to 0471-VHM-add-vhm-char-device-driver.patch diff --git a/0474-VHM-add-guest-memory-management-support.patch b/0472-VHM-add-guest-memory-management-support.patch similarity index 100% rename from 0474-VHM-add-guest-memory-management-support.patch rename to 0472-VHM-add-guest-memory-management-support.patch diff --git a/0475-VHM-add-guest-memory-remote-mapping-supp.patch b/0473-VHM-add-guest-memory-remote-mapping-supp.patch similarity index 100% rename from 0475-VHM-add-guest-memory-remote-mapping-supp.patch rename to 0473-VHM-add-guest-memory-remote-mapping-supp.patch diff --git a/0476-VHM-add-ioreq-service-support.patch b/0474-VHM-add-ioreq-service-support.patch similarity index 100% rename from 0476-VHM-add-ioreq-service-support.patch rename to 0474-VHM-add-ioreq-service-support.patch diff --git a/0477-VHM-add-interrupt-injection-support.patch b/0475-VHM-add-interrupt-injection-support.patch similarity index 100% rename from 0477-VHM-add-interrupt-injection-support.patch rename to 0475-VHM-add-interrupt-injection-support.patch diff --git a/0478-VHM-add-API-to-get-vm-info.patch b/0476-VHM-add-API-to-get-vm-info.patch similarity index 100% rename from 0478-VHM-add-API-to-get-vm-info.patch rename to 0476-VHM-add-API-to-get-vm-info.patch diff --git a/0479-VHM-add-API-to-do-guest-gpa2hpa-translat.patch b/0477-VHM-add-API-to-do-guest-gpa2hpa-translat.patch similarity index 100% rename from 0479-VHM-add-API-to-do-guest-gpa2hpa-translat.patch rename to 0477-VHM-add-API-to-do-guest-gpa2hpa-translat.patch diff --git a/0480-VHM-add-passthrough-device-support.patch b/0478-VHM-add-passthrough-device-support.patch similarity index 100% rename from 0480-VHM-add-passthrough-device-support.patch rename to 0478-VHM-add-passthrough-device-support.patch diff --git a/0481-x86-acrn-add-write_msi-pv-ops-to-interce.patch b/0479-x86-acrn-add-write_msi-pv-ops-to-interce.patch similarity index 100% rename from 0481-x86-acrn-add-write_msi-pv-ops-to-interce.patch rename to 0479-x86-acrn-add-write_msi-pv-ops-to-interce.patch diff --git a/0482-sos-cleanup-hypercall-API.patch b/0480-sos-cleanup-hypercall-API.patch similarity index 100% rename from 0482-sos-cleanup-hypercall-API.patch rename to 0480-sos-cleanup-hypercall-API.patch diff --git a/0483-vcpu-export-vcpu-create-interface-to-DM.patch b/0481-vcpu-export-vcpu-create-interface-to-DM.patch similarity index 100% rename from 0483-vcpu-export-vcpu-create-interface-to-DM.patch rename to 0481-vcpu-export-vcpu-create-interface-to-DM.patch diff --git a/0484-sos-clean-up-ptdev-msi-x-table-ioremap-o.patch b/0482-sos-clean-up-ptdev-msi-x-table-ioremap-o.patch similarity index 100% rename from 0484-sos-clean-up-ptdev-msi-x-table-ioremap-o.patch rename to 0482-sos-clean-up-ptdev-msi-x-table-ioremap-o.patch diff --git a/0485-sos-Update-the-common-head-file.patch b/0483-sos-Update-the-common-head-file.patch similarity index 100% rename from 0485-sos-Update-the-common-head-file.patch rename to 0483-sos-Update-the-common-head-file.patch diff --git a/0486-sos-cleanup-ptdev-irq-structure.patch b/0484-sos-cleanup-ptdev-irq-structure.patch similarity index 100% rename from 0486-sos-cleanup-ptdev-irq-structure.patch rename to 0484-sos-cleanup-ptdev-irq-structure.patch diff --git a/0487-VBS-K-Virtio-Backend-Service-in-Kernel-a.patch b/0485-VBS-K-Virtio-Backend-Service-in-Kernel-a.patch similarity index 100% rename from 0487-VBS-K-Virtio-Backend-Service-in-Kernel-a.patch rename to 0485-VBS-K-Virtio-Backend-Service-in-Kernel-a.patch diff --git a/0488-VBS-K-virtqueue-initialization-API.patch b/0486-VBS-K-virtqueue-initialization-API.patch similarity index 100% rename from 0488-VBS-K-virtqueue-initialization-API.patch rename to 0486-VBS-K-virtqueue-initialization-API.patch diff --git a/0489-VBS-K-virtqueue-runtime-API.patch b/0487-VBS-K-virtqueue-runtime-API.patch similarity index 100% rename from 0489-VBS-K-virtqueue-runtime-API.patch rename to 0487-VBS-K-virtqueue-runtime-API.patch diff --git a/0490-VBS-K-added-a-VBS-K-reference-driver.patch b/0488-VBS-K-added-a-VBS-K-reference-driver.patch similarity index 100% rename from 0490-VBS-K-added-a-VBS-K-reference-driver.patch rename to 0488-VBS-K-added-a-VBS-K-reference-driver.patch diff --git a/0491-hypercall-refine-hypercall-interfaces.patch b/0489-hypercall-refine-hypercall-interfaces.patch similarity index 100% rename from 0491-hypercall-refine-hypercall-interfaces.patch rename to 0489-hypercall-refine-hypercall-interfaces.patch diff --git a/0492-vhm-refine-vm-related-hypercall-ioctrl.patch b/0490-vhm-refine-vm-related-hypercall-ioctrl.patch similarity index 100% rename from 0492-vhm-refine-vm-related-hypercall-ioctrl.patch rename to 0490-vhm-refine-vm-related-hypercall-ioctrl.patch diff --git a/0493-hypercall-refine-HC-ID-and-parameter-num.patch b/0491-hypercall-refine-HC-ID-and-parameter-num.patch similarity index 100% rename from 0493-hypercall-refine-HC-ID-and-parameter-num.patch rename to 0491-hypercall-refine-HC-ID-and-parameter-num.patch diff --git a/0494-ioctl-cleanup-ioctl-structure.patch b/0492-ioctl-cleanup-ioctl-structure.patch similarity index 100% rename from 0494-ioctl-cleanup-ioctl-structure.patch rename to 0492-ioctl-cleanup-ioctl-structure.patch diff --git a/0495-Shared_buf-add-shared-buffer.patch b/0493-Shared_buf-add-shared-buffer.patch similarity index 100% rename from 0495-Shared_buf-add-shared-buffer.patch rename to 0493-Shared_buf-add-shared-buffer.patch diff --git a/0496-Shared_buf-added-hypercall-for-shared_bu.patch b/0494-Shared_buf-added-hypercall-for-shared_bu.patch similarity index 100% rename from 0496-Shared_buf-added-hypercall-for-shared_bu.patch rename to 0494-Shared_buf-added-hypercall-for-shared_bu.patch diff --git a/0497-ACRNTrace-add-acrn-trace-module.patch b/0495-ACRNTrace-add-acrn-trace-module.patch similarity index 100% rename from 0497-ACRNTrace-add-acrn-trace-module.patch rename to 0495-ACRNTrace-add-acrn-trace-module.patch diff --git a/0498-sos-fix-potential-bugs-in-ptdev-msi-x-ac.patch b/0496-sos-fix-potential-bugs-in-ptdev-msi-x-ac.patch similarity index 100% rename from 0498-sos-fix-potential-bugs-in-ptdev-msi-x-ac.patch rename to 0496-sos-fix-potential-bugs-in-ptdev-msi-x-ac.patch diff --git a/0499-vhm-cleanup-ioctls.patch b/0497-vhm-cleanup-ioctls.patch similarity index 100% rename from 0499-vhm-cleanup-ioctls.patch rename to 0497-vhm-cleanup-ioctls.patch diff --git a/0500-VHM-check-HV-api-version-for-VHM-module-.patch b/0498-VHM-check-HV-api-version-for-VHM-module-.patch similarity index 100% rename from 0500-VHM-check-HV-api-version-for-VHM-module-.patch rename to 0498-VHM-check-HV-api-version-for-VHM-module-.patch diff --git a/0501-VHM-add-VHM-api-version-support.patch b/0499-VHM-add-VHM-api-version-support.patch similarity index 100% rename from 0501-VHM-add-VHM-api-version-support.patch rename to 0499-VHM-add-VHM-api-version-support.patch diff --git a/0502-virtio-framework-support-ACRN-virtio-dev.patch b/0500-virtio-framework-support-ACRN-virtio-dev.patch similarity index 100% rename from 0502-virtio-framework-support-ACRN-virtio-dev.patch rename to 0500-virtio-framework-support-ACRN-virtio-dev.patch diff --git a/0503-VHM-sync-public-header-file-acrn_common..patch b/0501-VHM-sync-public-header-file-acrn_common..patch similarity index 100% rename from 0503-VHM-sync-public-header-file-acrn_common..patch rename to 0501-VHM-sync-public-header-file-acrn_common..patch diff --git a/0504-Check-x86_hyper-type-before-doing-hyperc.patch b/0502-Check-x86_hyper-type-before-doing-hyperc.patch similarity index 100% rename from 0504-Check-x86_hyper-type-before-doing-hyperc.patch rename to 0502-Check-x86_hyper-type-before-doing-hyperc.patch diff --git a/0505-VHM-replace-function-name-update_mmio_ma.patch b/0503-VHM-replace-function-name-update_mmio_ma.patch similarity index 100% rename from 0505-VHM-replace-function-name-update_mmio_ma.patch rename to 0503-VHM-replace-function-name-update_mmio_ma.patch diff --git a/0506-VHM-refine-memory-segment-interface.patch b/0504-VHM-refine-memory-segment-interface.patch similarity index 100% rename from 0506-VHM-refine-memory-segment-interface.patch rename to 0504-VHM-refine-memory-segment-interface.patch diff --git a/0507-VBS-K-added-VHM-wrapper-APIs.patch b/0505-VBS-K-added-VHM-wrapper-APIs.patch similarity index 100% rename from 0507-VBS-K-added-VHM-wrapper-APIs.patch rename to 0505-VBS-K-added-VHM-wrapper-APIs.patch diff --git a/0508-api-doc-add-ACRN-VBS-API-docs.patch b/0506-api-doc-add-ACRN-VBS-API-docs.patch similarity index 100% rename from 0508-api-doc-add-ACRN-VBS-API-docs.patch rename to 0506-api-doc-add-ACRN-VBS-API-docs.patch diff --git a/0509-HVLog-reserve-memory-for-ACRN-HVLog.patch b/0507-HVLog-reserve-memory-for-ACRN-HVLog.patch similarity index 100% rename from 0509-HVLog-reserve-memory-for-ACRN-HVLog.patch rename to 0507-HVLog-reserve-memory-for-ACRN-HVLog.patch diff --git a/0510-HVLog-add-HVLog-module.patch b/0508-HVLog-add-HVLog-module.patch similarity index 100% rename from 0510-HVLog-add-HVLog-module.patch rename to 0508-HVLog-add-HVLog-module.patch diff --git a/0511-update-MEM_ATTR_WRITE_PROT-with-WB-polic.patch b/0509-update-MEM_ATTR_WRITE_PROT-with-WB-polic.patch similarity index 100% rename from 0511-update-MEM_ATTR_WRITE_PROT-with-WB-polic.patch rename to 0509-update-MEM_ATTR_WRITE_PROT-with-WB-polic.patch diff --git a/0512-vhm-modify-mmio-memory-map-unmap-api.patch b/0510-vhm-modify-mmio-memory-map-unmap-api.patch similarity index 100% rename from 0512-vhm-modify-mmio-memory-map-unmap-api.patch rename to 0510-vhm-modify-mmio-memory-map-unmap-api.patch diff --git a/0513-vhm-cleanup-update-one-field-name-in-vhm.patch b/0511-vhm-cleanup-update-one-field-name-in-vhm.patch similarity index 100% rename from 0513-vhm-cleanup-update-one-field-name-in-vhm.patch rename to 0511-vhm-cleanup-update-one-field-name-in-vhm.patch diff --git a/0514-sos-add-a-config-for-VHM.patch b/0512-sos-add-a-config-for-VHM.patch similarity index 100% rename from 0514-sos-add-a-config-for-VHM.patch rename to 0512-sos-add-a-config-for-VHM.patch diff --git a/0515-api-doc-add-vhm-API-docs.patch b/0513-api-doc-add-vhm-API-docs.patch similarity index 100% rename from 0515-api-doc-add-vhm-API-docs.patch rename to 0513-api-doc-add-vhm-API-docs.patch diff --git a/0516-api-doc-update-ACRN-VBS-API-docs.patch b/0514-api-doc-update-ACRN-VBS-API-docs.patch similarity index 100% rename from 0516-api-doc-update-ACRN-VBS-API-docs.patch rename to 0514-api-doc-update-ACRN-VBS-API-docs.patch diff --git a/0517-license-update-intel-license-for-ACRN-VB.patch b/0515-license-update-intel-license-for-ACRN-VB.patch similarity index 100% rename from 0517-license-update-intel-license-for-ACRN-VB.patch rename to 0515-license-update-intel-license-for-ACRN-VB.patch diff --git a/0518-VBS-K-fix-compilation-warnings-in-VBS-K-.patch b/0516-VBS-K-fix-compilation-warnings-in-VBS-K-.patch similarity index 100% rename from 0518-VBS-K-fix-compilation-warnings-in-VBS-K-.patch rename to 0516-VBS-K-fix-compilation-warnings-in-VBS-K-.patch diff --git a/0519-Cleanup-Kconfig.patch b/0517-Cleanup-Kconfig.patch similarity index 100% rename from 0519-Cleanup-Kconfig.patch rename to 0517-Cleanup-Kconfig.patch diff --git a/0520-skip-sbuf-and-vhm-initialization-when-bo.patch b/0518-skip-sbuf-and-vhm-initialization-when-bo.patch similarity index 100% rename from 0520-skip-sbuf-and-vhm-initialization-when-bo.patch rename to 0518-skip-sbuf-and-vhm-initialization-when-bo.patch diff --git a/0521-VHM-add-hugetlb-page-ept-mapping-support.patch b/0519-VHM-add-hugetlb-page-ept-mapping-support.patch similarity index 100% rename from 0521-VHM-add-hugetlb-page-ept-mapping-support.patch rename to 0519-VHM-add-hugetlb-page-ept-mapping-support.patch diff --git a/0522-VHM-change-VM_SYSMEM-VM_MMIO-to-VM_MEMMA.patch b/0520-VHM-change-VM_SYSMEM-VM_MMIO-to-VM_MEMMA.patch similarity index 100% rename from 0522-VHM-change-VM_SYSMEM-VM_MMIO-to-VM_MEMMA.patch rename to 0520-VHM-change-VM_SYSMEM-VM_MMIO-to-VM_MEMMA.patch diff --git a/0523-VHM-add-hash-table-support-for-huge-page.patch b/0521-VHM-add-hash-table-support-for-huge-page.patch similarity index 100% rename from 0523-VHM-add-hash-table-support-for-huge-page.patch rename to 0521-VHM-add-hash-table-support-for-huge-page.patch diff --git a/0524-VHM-add-service-to-support-px-data-trans.patch b/0522-VHM-add-service-to-support-px-data-trans.patch similarity index 100% rename from 0524-VHM-add-service-to-support-px-data-trans.patch rename to 0522-VHM-add-service-to-support-px-data-trans.patch diff --git a/0525-sos-sync-common-header-file.patch b/0523-sos-sync-common-header-file.patch similarity index 100% rename from 0525-sos-sync-common-header-file.patch rename to 0523-sos-sync-common-header-file.patch diff --git a/0526-sos_kernel-export-restart-vm-function-to.patch b/0524-sos_kernel-export-restart-vm-function-to.patch similarity index 100% rename from 0526-sos_kernel-export-restart-vm-function-to.patch rename to 0524-sos_kernel-export-restart-vm-function-to.patch diff --git a/0527-VHM-add-service-to-support-cx-data-trans.patch b/0525-VHM-add-service-to-support-cx-data-trans.patch similarity index 100% rename from 0527-VHM-add-service-to-support-cx-data-trans.patch rename to 0525-VHM-add-service-to-support-cx-data-trans.patch diff --git a/0528-vhm-add-set_memmaps-hypercall-support.patch b/0526-vhm-add-set_memmaps-hypercall-support.patch similarity index 100% rename from 0528-vhm-add-set_memmaps-hypercall-support.patch rename to 0526-vhm-add-set_memmaps-hypercall-support.patch diff --git a/0529-vhm-use-set-memmaps-hypercall-for-hugetl.patch b/0527-vhm-use-set-memmaps-hypercall-for-hugetl.patch similarity index 100% rename from 0529-vhm-use-set-memmaps-hypercall-for-hugetl.patch rename to 0527-vhm-use-set-memmaps-hypercall-for-hugetl.patch diff --git a/0530-vhm-prepare-future-update-for-struct-vm_.patch b/0528-vhm-prepare-future-update-for-struct-vm_.patch similarity index 100% rename from 0530-vhm-prepare-future-update-for-struct-vm_.patch rename to 0528-vhm-prepare-future-update-for-struct-vm_.patch diff --git a/0531-VHM-bug-fix-on-operating-multi-thread-sy.patch b/0529-VHM-bug-fix-on-operating-multi-thread-sy.patch similarity index 100% rename from 0531-VHM-bug-fix-on-operating-multi-thread-sy.patch rename to 0529-VHM-bug-fix-on-operating-multi-thread-sy.patch diff --git a/0532-vhm-add-hypercall-to-set-sstate-data.patch b/0530-vhm-add-hypercall-to-set-sstate-data.patch similarity index 100% rename from 0532-vhm-add-hypercall-to-set-sstate-data.patch rename to 0530-vhm-add-hypercall-to-set-sstate-data.patch diff --git a/0533-VHM-Update-cpu-id-type-as-uint16_t-for-s.patch b/0531-VHM-Update-cpu-id-type-as-uint16_t-for-s.patch similarity index 100% rename from 0533-VHM-Update-cpu-id-type-as-uint16_t-for-s.patch rename to 0531-VHM-Update-cpu-id-type-as-uint16_t-for-s.patch diff --git a/0534-vhm-add-sos-offline-cpu-support.patch b/0532-vhm-add-sos-offline-cpu-support.patch similarity index 100% rename from 0534-vhm-add-sos-offline-cpu-support.patch rename to 0532-vhm-add-sos-offline-cpu-support.patch diff --git a/0535-vhm-Fix-kernel-doc-issues.patch b/0533-vhm-Fix-kernel-doc-issues.patch similarity index 100% rename from 0535-vhm-Fix-kernel-doc-issues.patch rename to 0533-vhm-Fix-kernel-doc-issues.patch diff --git a/0536-vhm-add-trusty-init-de-init-support.patch b/0534-vhm-add-trusty-init-de-init-support.patch similarity index 100% rename from 0536-vhm-add-trusty-init-de-init-support.patch rename to 0534-vhm-add-trusty-init-de-init-support.patch diff --git a/0537-vhm-Rename-the-restart_vm-to-reset_vm.patch b/0535-vhm-Rename-the-restart_vm-to-reset_vm.patch similarity index 100% rename from 0537-vhm-Rename-the-restart_vm-to-reset_vm.patch rename to 0535-vhm-Rename-the-restart_vm-to-reset_vm.patch diff --git a/0538-vhm-fix-kerneldoc-format.patch b/0536-vhm-fix-kerneldoc-format.patch similarity index 100% rename from 0538-vhm-fix-kerneldoc-format.patch rename to 0536-vhm-fix-kerneldoc-format.patch diff --git a/0539-sos-vhm-remove-set-guest-memory-map-by-C.patch b/0537-sos-vhm-remove-set-guest-memory-map-by-C.patch similarity index 100% rename from 0539-sos-vhm-remove-set-guest-memory-map-by-C.patch rename to 0537-sos-vhm-remove-set-guest-memory-map-by-C.patch diff --git a/0540-sos-vhm-remove-hugetlb_enabled-flag.patch b/0538-sos-vhm-remove-hugetlb_enabled-flag.patch similarity index 100% rename from 0540-sos-vhm-remove-hugetlb_enabled-flag.patch rename to 0538-sos-vhm-remove-hugetlb_enabled-flag.patch diff --git a/0541-sos-vhm-remove-MAP_MMIO.patch b/0539-sos-vhm-remove-MAP_MMIO.patch similarity index 100% rename from 0541-sos-vhm-remove-MAP_MMIO.patch rename to 0539-sos-vhm-remove-MAP_MMIO.patch diff --git a/0542-vhm-revisit-types-in-structure-parameter.patch b/0540-vhm-revisit-types-in-structure-parameter.patch similarity index 100% rename from 0542-vhm-revisit-types-in-structure-parameter.patch rename to 0540-vhm-revisit-types-in-structure-parameter.patch diff --git a/0543-sos-vhm-add-hcall_write_protect_page-hyp.patch b/0541-sos-vhm-add-hcall_write_protect_page-hyp.patch similarity index 100% rename from 0543-sos-vhm-add-hcall_write_protect_page-hyp.patch rename to 0541-sos-vhm-add-hcall_write_protect_page-hyp.patch diff --git a/0544-sos-vhm-refine-set-memory-region-API.patch b/0542-sos-vhm-refine-set-memory-region-API.patch similarity index 100% rename from 0544-sos-vhm-refine-set-memory-region-API.patch rename to 0542-sos-vhm-refine-set-memory-region-API.patch diff --git a/0545-vhm-remove-re-schedule-for-ioreq-tasklet.patch b/0543-vhm-remove-re-schedule-for-ioreq-tasklet.patch similarity index 100% rename from 0545-vhm-remove-re-schedule-for-ioreq-tasklet.patch rename to 0543-vhm-remove-re-schedule-for-ioreq-tasklet.patch diff --git a/0546-vhm-Add-vcpu_num-to-record-vcpu-number-o.patch b/0544-vhm-Add-vcpu_num-to-record-vcpu-number-o.patch similarity index 100% rename from 0546-vhm-Add-vcpu_num-to-record-vcpu-number-o.patch rename to 0544-vhm-Add-vcpu_num-to-record-vcpu-number-o.patch diff --git a/0547-vhm-mark-pending-ioreqs-in-bitmap-then-d.patch b/0545-vhm-mark-pending-ioreqs-in-bitmap-then-d.patch similarity index 100% rename from 0547-vhm-mark-pending-ioreqs-in-bitmap-then-d.patch rename to 0545-vhm-mark-pending-ioreqs-in-bitmap-then-d.patch diff --git a/0548-vhm-use-correct-string-length.patch b/0546-vhm-use-correct-string-length.patch similarity index 100% rename from 0548-vhm-use-correct-string-length.patch rename to 0546-vhm-use-correct-string-length.patch diff --git a/0549-vhm-adapt-to-the-new-state-transition-of.patch b/0547-vhm-adapt-to-the-new-state-transition-of.patch similarity index 100% rename from 0549-vhm-adapt-to-the-new-state-transition-of.patch rename to 0547-vhm-adapt-to-the-new-state-transition-of.patch diff --git a/0550-vhm-Add-error-handling-for-IC_CREATE_VM-.patch b/0548-vhm-Add-error-handling-for-IC_CREATE_VM-.patch similarity index 100% rename from 0550-vhm-Add-error-handling-for-IC_CREATE_VM-.patch rename to 0548-vhm-Add-error-handling-for-IC_CREATE_VM-.patch diff --git a/0551-vhm-setup-ioreq-shared-buf-in-IC_CREATE_.patch b/0549-vhm-setup-ioreq-shared-buf-in-IC_CREATE_.patch similarity index 100% rename from 0551-vhm-setup-ioreq-shared-buf-in-IC_CREATE_.patch rename to 0549-vhm-setup-ioreq-shared-buf-in-IC_CREATE_.patch diff --git a/0552-VBS-K-add-virtio_dev_reset.patch b/0550-VBS-K-add-virtio_dev_reset.patch similarity index 100% rename from 0552-VBS-K-add-virtio_dev_reset.patch rename to 0550-VBS-K-add-virtio_dev_reset.patch diff --git a/0553-VBS-K-Check-whether-vhm_client_id-is-val.patch b/0551-VBS-K-Check-whether-vhm_client_id-is-val.patch similarity index 100% rename from 0553-VBS-K-Check-whether-vhm_client_id-is-val.patch rename to 0551-VBS-K-Check-whether-vhm_client_id-is-val.patch diff --git a/0554-VBS-K-add-reset-support-for-vbs_rng.patch b/0552-VBS-K-add-reset-support-for-vbs_rng.patch similarity index 100% rename from 0554-VBS-K-add-reset-support-for-vbs_rng.patch rename to 0552-VBS-K-add-reset-support-for-vbs_rng.patch diff --git a/0555-VBS-K-fix-a-bug-due-to-incorrect-check-o.patch b/0553-VBS-K-fix-a-bug-due-to-incorrect-check-o.patch similarity index 100% rename from 0555-VBS-K-fix-a-bug-due-to-incorrect-check-o.patch rename to 0553-VBS-K-fix-a-bug-due-to-incorrect-check-o.patch diff --git a/0556-VHM-remove-panic-action-when-ioreq-fails.patch b/0554-VHM-remove-panic-action-when-ioreq-fails.patch similarity index 100% rename from 0556-VHM-remove-panic-action-when-ioreq-fails.patch rename to 0554-VHM-remove-panic-action-when-ioreq-fails.patch diff --git a/0557-vbs-fix-virtio_vq_index_get-func-handlin.patch b/0555-vbs-fix-virtio_vq_index_get-func-handlin.patch similarity index 100% rename from 0557-vbs-fix-virtio_vq_index_get-func-handlin.patch rename to 0555-vbs-fix-virtio_vq_index_get-func-handlin.patch diff --git a/0558-vhm-init-client-kthread_exit-true.patch b/0556-vhm-init-client-kthread_exit-true.patch similarity index 100% rename from 0558-vhm-init-client-kthread_exit-true.patch rename to 0556-vhm-init-client-kthread_exit-true.patch diff --git a/0559-vhm-fix-client-use-after-free.patch b/0557-vhm-fix-client-use-after-free.patch similarity index 100% rename from 0559-vhm-fix-client-use-after-free.patch rename to 0557-vhm-fix-client-use-after-free.patch diff --git a/0560-Adds-new-API-for-unmap-memseg.patch b/0558-Adds-new-API-for-unmap-memseg.patch similarity index 100% rename from 0560-Adds-new-API-for-unmap-memseg.patch rename to 0558-Adds-new-API-for-unmap-memseg.patch diff --git a/0561-sos-vhm-add-HC_SETUP_HV_NPK_LOG-hypercal.patch b/0559-sos-vhm-add-HC_SETUP_HV_NPK_LOG-hypercal.patch similarity index 100% rename from 0561-sos-vhm-add-HC_SETUP_HV_NPK_LOG-hypercal.patch rename to 0559-sos-vhm-add-HC_SETUP_HV_NPK_LOG-hypercal.patch diff --git a/0562-acrn-add-hv_npk_log-module.patch b/0560-acrn-add-hv_npk_log-module.patch similarity index 100% rename from 0562-acrn-add-hv_npk_log-module.patch rename to 0560-acrn-add-hv_npk_log-module.patch diff --git a/0563-Adding-kernel-parameter-for-forcing-xapi.patch b/0561-Adding-kernel-parameter-for-forcing-xapi.patch similarity index 100% rename from 0563-Adding-kernel-parameter-for-forcing-xapi.patch rename to 0561-Adding-kernel-parameter-for-forcing-xapi.patch diff --git a/0564-VHM-Add-EXPORT_SYMBOL-for-VHM-API-functi.patch b/0562-VHM-Add-EXPORT_SYMBOL-for-VHM-API-functi.patch similarity index 100% rename from 0564-VHM-Add-EXPORT_SYMBOL-for-VHM-API-functi.patch rename to 0562-VHM-Add-EXPORT_SYMBOL-for-VHM-API-functi.patch diff --git a/0565-vhm-deinit-trusty-after-hcall_destroy_vm.patch b/0563-vhm-deinit-trusty-after-hcall_destroy_vm.patch similarity index 100% rename from 0565-vhm-deinit-trusty-after-hcall_destroy_vm.patch rename to 0563-vhm-deinit-trusty-after-hcall_destroy_vm.patch diff --git a/0566-VHM-add-ioctl-hypercall-for-UOS-intr-dat.patch b/0564-VHM-add-ioctl-hypercall-for-UOS-intr-dat.patch similarity index 100% rename from 0566-VHM-add-ioctl-hypercall-for-UOS-intr-dat.patch rename to 0564-VHM-add-ioctl-hypercall-for-UOS-intr-dat.patch diff --git a/0567-vhm-enable-Werror-while-compiling-vhm-vb.patch b/0565-vhm-enable-Werror-while-compiling-vhm-vb.patch similarity index 100% rename from 0567-vhm-enable-Werror-while-compiling-vhm-vb.patch rename to 0565-vhm-enable-Werror-while-compiling-vhm-vb.patch diff --git a/0568-vhm-change-trace_printk-of-vhm_dev_ioctl.patch b/0566-vhm-change-trace_printk-of-vhm_dev_ioctl.patch similarity index 100% rename from 0568-vhm-change-trace_printk-of-vhm_dev_ioctl.patch rename to 0566-vhm-change-trace_printk-of-vhm_dev_ioctl.patch diff --git a/0569-vhm-add-ioeventfd-support-for-ACRN-hyper.patch b/0567-vhm-add-ioeventfd-support-for-ACRN-hyper.patch similarity index 100% rename from 0569-vhm-add-ioeventfd-support-for-ACRN-hyper.patch rename to 0567-vhm-add-ioeventfd-support-for-ACRN-hyper.patch diff --git a/0570-vhm-add-irqfd-support-for-ACRN-hyperviso.patch b/0568-vhm-add-irqfd-support-for-ACRN-hyperviso.patch similarity index 100% rename from 0570-vhm-add-irqfd-support-for-ACRN-hyperviso.patch rename to 0568-vhm-add-irqfd-support-for-ACRN-hyperviso.patch diff --git a/0571-vhm-add-ioctl-for-set-clear-IRQ-line.patch b/0569-vhm-add-ioctl-for-set-clear-IRQ-line.patch similarity index 100% rename from 0571-vhm-add-ioctl-for-set-clear-IRQ-line.patch rename to 0569-vhm-add-ioctl-for-set-clear-IRQ-line.patch diff --git a/0572-sos-vhm-add-hypercall-to-set-guest-vcpu-.patch b/0570-sos-vhm-add-hypercall-to-set-guest-vcpu-.patch similarity index 100% rename from 0572-sos-vhm-add-hypercall-to-set-guest-vcpu-.patch rename to 0570-sos-vhm-add-hypercall-to-set-guest-vcpu-.patch diff --git a/0573-Kernel-Acrn-Use-HYPERVISOR_CALLBACK_VECT.patch b/0571-Kernel-Acrn-Use-HYPERVISOR_CALLBACK_VECT.patch similarity index 100% rename from 0573-Kernel-Acrn-Use-HYPERVISOR_CALLBACK_VECT.patch rename to 0571-Kernel-Acrn-Use-HYPERVISOR_CALLBACK_VECT.patch diff --git a/0574-VHM-Add-one-hypercall-to-configure-the-u.patch b/0572-VHM-Add-one-hypercall-to-configure-the-u.patch similarity index 100% rename from 0574-VHM-Add-one-hypercall-to-configure-the-u.patch rename to 0572-VHM-Add-one-hypercall-to-configure-the-u.patch diff --git a/0575-VHM-Notify-hypervisor-to-switch-the-up-n.patch b/0573-VHM-Notify-hypervisor-to-switch-the-up-n.patch similarity index 100% rename from 0575-VHM-Notify-hypervisor-to-switch-the-up-n.patch rename to 0573-VHM-Notify-hypervisor-to-switch-the-up-n.patch diff --git a/0576-Add-support-for-hypercalls-for-sep-and-s.patch b/0574-Add-support-for-hypercalls-for-sep-and-s.patch similarity index 100% rename from 0576-Add-support-for-hypercalls-for-sep-and-s.patch rename to 0574-Add-support-for-hypercalls-for-sep-and-s.patch diff --git a/0577-Kernel-VHM-Rename-acpi_generic_address-i.patch b/0575-Kernel-VHM-Rename-acpi_generic_address-i.patch similarity index 100% rename from 0577-Kernel-VHM-Rename-acpi_generic_address-i.patch rename to 0575-Kernel-VHM-Rename-acpi_generic_address-i.patch diff --git a/0578-drm-i915-gvt-some-changes-to-support-xen.patch b/0576-drm-i915-gvt-some-changes-to-support-xen.patch similarity index 100% rename from 0578-drm-i915-gvt-some-changes-to-support-xen.patch rename to 0576-drm-i915-gvt-some-changes-to-support-xen.patch diff --git a/0579-drm-i915-gvt-Refactored-BXT-plane-regist.patch b/0577-drm-i915-gvt-Refactored-BXT-plane-regist.patch similarity index 100% rename from 0579-drm-i915-gvt-Refactored-BXT-plane-regist.patch rename to 0577-drm-i915-gvt-Refactored-BXT-plane-regist.patch diff --git a/0580-drm-i915-gvt-passthru-PIPE_DSL-regiser-t.patch b/0578-drm-i915-gvt-passthru-PIPE_DSL-regiser-t.patch similarity index 100% rename from 0580-drm-i915-gvt-passthru-PIPE_DSL-regiser-t.patch rename to 0578-drm-i915-gvt-passthru-PIPE_DSL-regiser-t.patch diff --git a/0581-drm-i915-gvt-local-display-support.patch b/0579-drm-i915-gvt-local-display-support.patch similarity index 100% rename from 0581-drm-i915-gvt-local-display-support.patch rename to 0579-drm-i915-gvt-local-display-support.patch diff --git a/0582-drm-i915-gvt-local-display-support-in-GV.patch b/0580-drm-i915-gvt-local-display-support-in-GV.patch similarity index 100% rename from 0582-drm-i915-gvt-local-display-support-in-GV.patch rename to 0580-drm-i915-gvt-local-display-support-in-GV.patch diff --git a/0583-drm-i915-gvt-Change-DomU-to-support-3-HD.patch b/0581-drm-i915-gvt-Change-DomU-to-support-3-HD.patch similarity index 100% rename from 0583-drm-i915-gvt-Change-DomU-to-support-3-HD.patch rename to 0581-drm-i915-gvt-Change-DomU-to-support-3-HD.patch diff --git a/0584-drm-i915-i915-changes-to-allow-DomU-to-s.patch b/0582-drm-i915-i915-changes-to-allow-DomU-to-s.patch similarity index 100% rename from 0584-drm-i915-i915-changes-to-allow-DomU-to-s.patch rename to 0582-drm-i915-i915-changes-to-allow-DomU-to-s.patch diff --git a/0585-drm-i915-gvt-removed-save-store-register.patch b/0583-drm-i915-gvt-removed-save-store-register.patch similarity index 100% rename from 0585-drm-i915-gvt-removed-save-store-register.patch rename to 0583-drm-i915-gvt-removed-save-store-register.patch diff --git a/0586-drm-i915-gvt-ivi-lazy-shadow-context.patch b/0584-drm-i915-gvt-ivi-lazy-shadow-context.patch similarity index 100% rename from 0586-drm-i915-gvt-ivi-lazy-shadow-context.patch rename to 0584-drm-i915-gvt-ivi-lazy-shadow-context.patch diff --git a/0587-drm-i915-gvt-add-some-MMIO-value-initial.patch b/0585-drm-i915-gvt-add-some-MMIO-value-initial.patch similarity index 100% rename from 0587-drm-i915-gvt-add-some-MMIO-value-initial.patch rename to 0585-drm-i915-gvt-add-some-MMIO-value-initial.patch diff --git a/0588-drm-i915-gvt-added-option-to-disable-wa_.patch b/0586-drm-i915-gvt-added-option-to-disable-wa_.patch similarity index 100% rename from 0588-drm-i915-gvt-added-option-to-disable-wa_.patch rename to 0586-drm-i915-gvt-added-option-to-disable-wa_.patch diff --git a/0589-drm-i915-gvt-enable-ppgtt-oos-sync-by-de.patch b/0587-drm-i915-gvt-enable-ppgtt-oos-sync-by-de.patch similarity index 100% rename from 0589-drm-i915-gvt-enable-ppgtt-oos-sync-by-de.patch rename to 0587-drm-i915-gvt-enable-ppgtt-oos-sync-by-de.patch diff --git a/0590-drm-i915-gvt-emit-shadow-ppgtt-root-in-L.patch b/0588-drm-i915-gvt-emit-shadow-ppgtt-root-in-L.patch similarity index 100% rename from 0590-drm-i915-gvt-emit-shadow-ppgtt-root-in-L.patch rename to 0588-drm-i915-gvt-emit-shadow-ppgtt-root-in-L.patch diff --git a/0591-drm-i915-gvt-Raise-a-uevent-when-Dom-0-i.patch b/0589-drm-i915-gvt-Raise-a-uevent-when-Dom-0-i.patch similarity index 100% rename from 0591-drm-i915-gvt-Raise-a-uevent-when-Dom-0-i.patch rename to 0589-drm-i915-gvt-Raise-a-uevent-when-Dom-0-i.patch diff --git a/0592-drm-i915-gvt-Don-t-load-CSR-for-Dom-U.patch b/0590-drm-i915-gvt-Don-t-load-CSR-for-Dom-U.patch similarity index 100% rename from 0592-drm-i915-gvt-Don-t-load-CSR-for-Dom-U.patch rename to 0590-drm-i915-gvt-Don-t-load-CSR-for-Dom-U.patch diff --git a/0593-drm-i915-gvt-add-acrngt-support.patch b/0591-drm-i915-gvt-add-acrngt-support.patch similarity index 100% rename from 0593-drm-i915-gvt-add-acrngt-support.patch rename to 0591-drm-i915-gvt-add-acrngt-support.patch diff --git a/0594-drm-i915-gvt-hard-code-Pipe-B-plane-owne.patch b/0592-drm-i915-gvt-hard-code-Pipe-B-plane-owne.patch similarity index 100% rename from 0594-drm-i915-gvt-hard-code-Pipe-B-plane-owne.patch rename to 0592-drm-i915-gvt-hard-code-Pipe-B-plane-owne.patch diff --git a/0595-drm-i915-gvt-remove-some-initialization-.patch b/0593-drm-i915-gvt-remove-some-initialization-.patch similarity index 100% rename from 0595-drm-i915-gvt-remove-some-initialization-.patch rename to 0593-drm-i915-gvt-remove-some-initialization-.patch diff --git a/0596-drm-i915-gvt-avoid-unncessary-reset-in-G.patch b/0594-drm-i915-gvt-avoid-unncessary-reset-in-G.patch similarity index 100% rename from 0596-drm-i915-gvt-avoid-unncessary-reset-in-G.patch rename to 0594-drm-i915-gvt-avoid-unncessary-reset-in-G.patch diff --git a/0597-drm-i915-gvt-add-param-disable_gvt_fw_lo.patch b/0595-drm-i915-gvt-add-param-disable_gvt_fw_lo.patch similarity index 100% rename from 0597-drm-i915-gvt-add-param-disable_gvt_fw_lo.patch rename to 0595-drm-i915-gvt-add-param-disable_gvt_fw_lo.patch diff --git a/0598-drm-i915-gvt-inject-error-interrupt-to-D.patch b/0596-drm-i915-gvt-inject-error-interrupt-to-D.patch similarity index 100% rename from 0598-drm-i915-gvt-inject-error-interrupt-to-D.patch rename to 0596-drm-i915-gvt-inject-error-interrupt-to-D.patch diff --git a/0599-drm-i915-gvt-Added-error-interrupt-handl.patch b/0597-drm-i915-gvt-Added-error-interrupt-handl.patch similarity index 100% rename from 0599-drm-i915-gvt-Added-error-interrupt-handl.patch rename to 0597-drm-i915-gvt-Added-error-interrupt-handl.patch diff --git a/0600-drm-i915-gvt-Add-the-support-of-HUC_STAT.patch b/0598-drm-i915-gvt-Add-the-support-of-HUC_STAT.patch similarity index 100% rename from 0600-drm-i915-gvt-Add-the-support-of-HUC_STAT.patch rename to 0598-drm-i915-gvt-Add-the-support-of-HUC_STAT.patch diff --git a/0601-drm-i915-gvt-Add-vgt-id-in-context-id.patch b/0599-drm-i915-gvt-Add-vgt-id-in-context-id.patch similarity index 100% rename from 0601-drm-i915-gvt-Add-vgt-id-in-context-id.patch rename to 0599-drm-i915-gvt-Add-vgt-id-in-context-id.patch diff --git a/0602-drm-i915-gvt-show-pid-hw_id-of-current-D.patch b/0600-drm-i915-gvt-show-pid-hw_id-of-current-D.patch similarity index 100% rename from 0602-drm-i915-gvt-show-pid-hw_id-of-current-D.patch rename to 0600-drm-i915-gvt-show-pid-hw_id-of-current-D.patch diff --git a/0603-drm-i915-gvt-Add-new-trace-point-to-outp.patch b/0601-drm-i915-gvt-Add-new-trace-point-to-outp.patch similarity index 100% rename from 0603-drm-i915-gvt-Add-new-trace-point-to-outp.patch rename to 0601-drm-i915-gvt-Add-new-trace-point-to-outp.patch diff --git a/0604-drm-i915-gvt-preliminary-per-ring-schedu.patch b/0602-drm-i915-gvt-preliminary-per-ring-schedu.patch similarity index 100% rename from 0604-drm-i915-gvt-preliminary-per-ring-schedu.patch rename to 0602-drm-i915-gvt-preliminary-per-ring-schedu.patch diff --git a/0605-drm-i915-gvt-Support-vGPU-guest-framebuf.patch b/0603-drm-i915-gvt-Support-vGPU-guest-framebuf.patch similarity index 100% rename from 0605-drm-i915-gvt-Support-vGPU-guest-framebuf.patch rename to 0603-drm-i915-gvt-Support-vGPU-guest-framebuf.patch diff --git a/0606-drm-i915-gvt-unset-DDI_BUF_CTL_ENABLE-du.patch b/0604-drm-i915-gvt-unset-DDI_BUF_CTL_ENABLE-du.patch similarity index 100% rename from 0606-drm-i915-gvt-unset-DDI_BUF_CTL_ENABLE-du.patch rename to 0604-drm-i915-gvt-unset-DDI_BUF_CTL_ENABLE-du.patch diff --git a/0607-drm-i915-gvt-add-scaler-owner-to-support.patch b/0605-drm-i915-gvt-add-scaler-owner-to-support.patch similarity index 100% rename from 0607-drm-i915-gvt-add-scaler-owner-to-support.patch rename to 0605-drm-i915-gvt-add-scaler-owner-to-support.patch diff --git a/0608-drm-i915-gvt-support-guest-plane-scaling.patch b/0606-drm-i915-gvt-support-guest-plane-scaling.patch similarity index 100% rename from 0608-drm-i915-gvt-support-guest-plane-scaling.patch rename to 0606-drm-i915-gvt-support-guest-plane-scaling.patch diff --git a/0609-drm-i915-gvt-add-module-parameter-enable.patch b/0607-drm-i915-gvt-add-module-parameter-enable.patch similarity index 100% rename from 0609-drm-i915-gvt-add-module-parameter-enable.patch rename to 0607-drm-i915-gvt-add-module-parameter-enable.patch diff --git a/0610-drm-i915-gvt-get-ready-of-memory-for-pvm.patch b/0608-drm-i915-gvt-get-ready-of-memory-for-pvm.patch similarity index 100% rename from 0610-drm-i915-gvt-get-ready-of-memory-for-pvm.patch rename to 0608-drm-i915-gvt-get-ready-of-memory-for-pvm.patch diff --git a/0611-drm-i915-implement-pvmmio-in-guest-i915.patch b/0609-drm-i915-implement-pvmmio-in-guest-i915.patch similarity index 100% rename from 0611-drm-i915-implement-pvmmio-in-guest-i915.patch rename to 0609-drm-i915-implement-pvmmio-in-guest-i915.patch diff --git a/0612-drm-i915-gvt-implement-pvmmio-in-GVTg.patch b/0610-drm-i915-gvt-implement-pvmmio-in-GVTg.patch similarity index 100% rename from 0612-drm-i915-gvt-implement-pvmmio-in-GVTg.patch rename to 0610-drm-i915-gvt-implement-pvmmio-in-GVTg.patch diff --git a/0613-drm-i915-gvt-add-pvmmio-support-in-preem.patch b/0611-drm-i915-gvt-add-pvmmio-support-in-preem.patch similarity index 100% rename from 0613-drm-i915-gvt-add-pvmmio-support-in-preem.patch rename to 0611-drm-i915-gvt-add-pvmmio-support-in-preem.patch diff --git a/0614-drm-i915-Use-64-bit-write-to-optimize-wr.patch b/0612-drm-i915-Use-64-bit-write-to-optimize-wr.patch similarity index 100% rename from 0614-drm-i915-Use-64-bit-write-to-optimize-wr.patch rename to 0612-drm-i915-Use-64-bit-write-to-optimize-wr.patch diff --git a/0615-drm-i915-gvt-don-t-treat-EINVAL-if-trap-.patch b/0613-drm-i915-gvt-don-t-treat-EINVAL-if-trap-.patch similarity index 100% rename from 0615-drm-i915-gvt-don-t-treat-EINVAL-if-trap-.patch rename to 0613-drm-i915-gvt-don-t-treat-EINVAL-if-trap-.patch diff --git a/0616-drm-i915-gvt-pvmmio-optimization-for-pla.patch b/0614-drm-i915-gvt-pvmmio-optimization-for-pla.patch similarity index 100% rename from 0616-drm-i915-gvt-pvmmio-optimization-for-pla.patch rename to 0614-drm-i915-gvt-pvmmio-optimization-for-pla.patch diff --git a/0617-drm-i915-gvt-handling-pvmmio-update-of-p.patch b/0615-drm-i915-gvt-handling-pvmmio-update-of-p.patch similarity index 100% rename from 0617-drm-i915-gvt-handling-pvmmio-update-of-p.patch rename to 0615-drm-i915-gvt-handling-pvmmio-update-of-p.patch diff --git a/0618-drm-i915-gvt-enable-plane-update-pvmmio-.patch b/0616-drm-i915-gvt-enable-plane-update-pvmmio-.patch similarity index 100% rename from 0618-drm-i915-gvt-enable-plane-update-pvmmio-.patch rename to 0616-drm-i915-gvt-enable-plane-update-pvmmio-.patch diff --git a/0619-drm-i915-gvt-implement-gfn_to_mfn-with-i.patch b/0617-drm-i915-gvt-implement-gfn_to_mfn-with-i.patch similarity index 100% rename from 0619-drm-i915-gvt-implement-gfn_to_mfn-with-i.patch rename to 0617-drm-i915-gvt-implement-gfn_to_mfn-with-i.patch diff --git a/0620-drm-i915-gvt-cached-read_gpa-optimizatio.patch b/0618-drm-i915-gvt-cached-read_gpa-optimizatio.patch similarity index 100% rename from 0620-drm-i915-gvt-cached-read_gpa-optimizatio.patch rename to 0618-drm-i915-gvt-cached-read_gpa-optimizatio.patch diff --git a/0621-drm-i915-gvt-add-a-fastpath-for-cmd-pars.patch b/0619-drm-i915-gvt-add-a-fastpath-for-cmd-pars.patch similarity index 100% rename from 0621-drm-i915-gvt-add-a-fastpath-for-cmd-pars.patch rename to 0619-drm-i915-gvt-add-a-fastpath-for-cmd-pars.patch diff --git a/0622-drm-i915-gvt-notify-ppgtt-update-through.patch b/0620-drm-i915-gvt-notify-ppgtt-update-through.patch similarity index 100% rename from 0622-drm-i915-gvt-notify-ppgtt-update-through.patch rename to 0620-drm-i915-gvt-notify-ppgtt-update-through.patch diff --git a/0623-drm-i915-gvt-handle-ppgtt-update-from-g2.patch b/0621-drm-i915-gvt-handle-ppgtt-update-from-g2.patch similarity index 100% rename from 0623-drm-i915-gvt-handle-ppgtt-update-from-g2.patch rename to 0621-drm-i915-gvt-handle-ppgtt-update-from-g2.patch diff --git a/0624-drm-i915-gvt-enable-pv-ppgtt-update-by-d.patch b/0622-drm-i915-gvt-enable-pv-ppgtt-update-by-d.patch similarity index 100% rename from 0624-drm-i915-gvt-enable-pv-ppgtt-update-by-d.patch rename to 0622-drm-i915-gvt-enable-pv-ppgtt-update-by-d.patch diff --git a/0625-drm-i915-gvt-pvmmio-optimization-for-pla.patch b/0623-drm-i915-gvt-pvmmio-optimization-for-pla.patch similarity index 100% rename from 0625-drm-i915-gvt-pvmmio-optimization-for-pla.patch rename to 0623-drm-i915-gvt-pvmmio-optimization-for-pla.patch diff --git a/0626-drm-i915-gvt-handling-pvmmio-update-of-p.patch b/0624-drm-i915-gvt-handling-pvmmio-update-of-p.patch similarity index 100% rename from 0626-drm-i915-gvt-handling-pvmmio-update-of-p.patch rename to 0624-drm-i915-gvt-handling-pvmmio-update-of-p.patch diff --git a/0627-drm-i915-gvt-enable-plane-wm-pvmmio-leve.patch b/0625-drm-i915-gvt-enable-plane-wm-pvmmio-leve.patch similarity index 100% rename from 0627-drm-i915-gvt-enable-plane-wm-pvmmio-leve.patch rename to 0625-drm-i915-gvt-enable-plane-wm-pvmmio-leve.patch diff --git a/0628-drm-i915-gvt-notify-global-gtt-update-th.patch b/0626-drm-i915-gvt-notify-global-gtt-update-th.patch similarity index 100% rename from 0628-drm-i915-gvt-notify-global-gtt-update-th.patch rename to 0626-drm-i915-gvt-notify-global-gtt-update-th.patch diff --git a/0629-drm-i915-gvt-handle-global-gtt-update-fr.patch b/0627-drm-i915-gvt-handle-global-gtt-update-fr.patch similarity index 100% rename from 0629-drm-i915-gvt-handle-global-gtt-update-fr.patch rename to 0627-drm-i915-gvt-handle-global-gtt-update-fr.patch diff --git a/0630-drm-i915-gvt-enable-pv-global-gtt-update.patch b/0628-drm-i915-gvt-enable-pv-global-gtt-update.patch similarity index 100% rename from 0630-drm-i915-gvt-enable-pv-global-gtt-update.patch rename to 0628-drm-i915-gvt-enable-pv-global-gtt-update.patch diff --git a/0631-drm-i915-gvt-Check-the-state-of-PVMMIO-g.patch b/0629-drm-i915-gvt-Check-the-state-of-PVMMIO-g.patch similarity index 100% rename from 0631-drm-i915-gvt-Check-the-state-of-PVMMIO-g.patch rename to 0629-drm-i915-gvt-Check-the-state-of-PVMMIO-g.patch diff --git a/0632-drm-i915-gvt-allocate-ddb-according-to-a.patch b/0630-drm-i915-gvt-allocate-ddb-according-to-a.patch similarity index 100% rename from 0632-drm-i915-gvt-allocate-ddb-according-to-a.patch rename to 0630-drm-i915-gvt-allocate-ddb-according-to-a.patch diff --git a/0633-REVERTME-IOTG-hyper_dmabuf-Introducing-t.patch b/0631-REVERTME-IOTG-hyper_dmabuf-Introducing-t.patch similarity index 100% rename from 0633-REVERTME-IOTG-hyper_dmabuf-Introducing-t.patch rename to 0631-REVERTME-IOTG-hyper_dmabuf-Introducing-t.patch diff --git a/0634-hyper_dmabuf-Enable-hyper_dmabuf-only-on.patch b/0632-hyper_dmabuf-Enable-hyper_dmabuf-only-on.patch similarity index 100% rename from 0634-hyper_dmabuf-Enable-hyper_dmabuf-only-on.patch rename to 0632-hyper_dmabuf-Enable-hyper_dmabuf-only-on.patch diff --git a/0635-hyper_dmabuf-Fix-array-length-check-issu.patch b/0633-hyper_dmabuf-Fix-array-length-check-issu.patch similarity index 100% rename from 0635-hyper_dmabuf-Fix-array-length-check-issu.patch rename to 0633-hyper_dmabuf-Fix-array-length-check-issu.patch diff --git a/0636-kernel-hyper_dmabuf-disable-hyper_dmabuf.patch b/0634-kernel-hyper_dmabuf-disable-hyper_dmabuf.patch similarity index 100% rename from 0636-kernel-hyper_dmabuf-disable-hyper_dmabuf.patch rename to 0634-kernel-hyper_dmabuf-disable-hyper_dmabuf.patch diff --git a/0637-hyper_dmabuf-Remove-void-cast-in-cpu_acc.patch b/0635-hyper_dmabuf-Remove-void-cast-in-cpu_acc.patch similarity index 100% rename from 0637-hyper_dmabuf-Remove-void-cast-in-cpu_acc.patch rename to 0635-hyper_dmabuf-Remove-void-cast-in-cpu_acc.patch diff --git a/0638-hyper_dmabuf-Fix-incorrect-return-in-hyp.patch b/0636-hyper_dmabuf-Fix-incorrect-return-in-hyp.patch similarity index 100% rename from 0638-hyper_dmabuf-Fix-incorrect-return-in-hyp.patch rename to 0636-hyper_dmabuf-Fix-incorrect-return-in-hyp.patch diff --git a/0639-hyper_dmabuf-Check-for-NULL-value-before.patch b/0637-hyper_dmabuf-Check-for-NULL-value-before.patch similarity index 100% rename from 0639-hyper_dmabuf-Check-for-NULL-value-before.patch rename to 0637-hyper_dmabuf-Check-for-NULL-value-before.patch diff --git a/0640-hyper_dmabuf-Remove-unused-variable-warn.patch b/0638-hyper_dmabuf-Remove-unused-variable-warn.patch similarity index 100% rename from 0640-hyper_dmabuf-Remove-unused-variable-warn.patch rename to 0638-hyper_dmabuf-Remove-unused-variable-warn.patch diff --git a/0641-hyper_dmabuf-virtio-Protect-virtqueue-op.patch b/0639-hyper_dmabuf-virtio-Protect-virtqueue-op.patch similarity index 100% rename from 0641-hyper_dmabuf-virtio-Protect-virtqueue-op.patch rename to 0639-hyper_dmabuf-virtio-Protect-virtqueue-op.patch diff --git a/0642-hyper_dmabuf-virtio-Correctly-cleanup-fr.patch b/0640-hyper_dmabuf-virtio-Correctly-cleanup-fr.patch similarity index 100% rename from 0642-hyper_dmabuf-virtio-Correctly-cleanup-fr.patch rename to 0640-hyper_dmabuf-virtio-Correctly-cleanup-fr.patch diff --git a/0643-hyper_dmabuf-virtio-bugfix-on-acrn_ioreq.patch b/0641-hyper_dmabuf-virtio-bugfix-on-acrn_ioreq.patch similarity index 100% rename from 0643-hyper_dmabuf-virtio-bugfix-on-acrn_ioreq.patch rename to 0641-hyper_dmabuf-virtio-bugfix-on-acrn_ioreq.patch diff --git a/0644-hyper_dmabuf-virtio-Add-support-for-VBS_.patch b/0642-hyper_dmabuf-virtio-Add-support-for-VBS_.patch similarity index 100% rename from 0644-hyper_dmabuf-virtio-Add-support-for-VBS_.patch rename to 0642-hyper_dmabuf-virtio-Add-support-for-VBS_.patch diff --git a/0645-hyper_dmabuf-virtio-Handle-S3-resume-cor.patch b/0643-hyper_dmabuf-virtio-Handle-S3-resume-cor.patch similarity index 100% rename from 0645-hyper_dmabuf-virtio-Handle-S3-resume-cor.patch rename to 0643-hyper_dmabuf-virtio-Handle-S3-resume-cor.patch diff --git a/0646-hyper_dmabuf-fix-map-failure-issue-when-.patch b/0644-hyper_dmabuf-fix-map-failure-issue-when-.patch similarity index 100% rename from 0646-hyper_dmabuf-fix-map-failure-issue-when-.patch rename to 0644-hyper_dmabuf-fix-map-failure-issue-when-.patch diff --git a/0647-hyper_dmabuf-fix-compile-warnings-in-hyp.patch b/0645-hyper_dmabuf-fix-compile-warnings-in-hyp.patch similarity index 100% rename from 0647-hyper_dmabuf-fix-compile-warnings-in-hyp.patch rename to 0645-hyper_dmabuf-fix-compile-warnings-in-hyp.patch diff --git a/0648-hyper_dmabuf-virtio-Adapt-to-the-new-sta.patch b/0646-hyper_dmabuf-virtio-Adapt-to-the-new-sta.patch similarity index 100% rename from 0648-hyper_dmabuf-virtio-Adapt-to-the-new-sta.patch rename to 0646-hyper_dmabuf-virtio-Adapt-to-the-new-sta.patch diff --git a/0649-hyper_dmabuf-virtio-Process-ioreq-accord.patch b/0647-hyper_dmabuf-virtio-Process-ioreq-accord.patch similarity index 100% rename from 0649-hyper_dmabuf-virtio-Process-ioreq-accord.patch rename to 0647-hyper_dmabuf-virtio-Process-ioreq-accord.patch diff --git a/0650-hyper_dmabuf-virtio-Fixed-compilation-wa.patch b/0648-hyper_dmabuf-virtio-Fixed-compilation-wa.patch similarity index 100% rename from 0650-hyper_dmabuf-virtio-Fixed-compilation-wa.patch rename to 0648-hyper_dmabuf-virtio-Fixed-compilation-wa.patch diff --git a/0651-hyper_dmabuf-Align-with-dma_buf_ops-chan.patch b/0649-hyper_dmabuf-Align-with-dma_buf_ops-chan.patch similarity index 100% rename from 0651-hyper_dmabuf-Align-with-dma_buf_ops-chan.patch rename to 0649-hyper_dmabuf-Align-with-dma_buf_ops-chan.patch diff --git a/0652-drm-i915-diable-huge-page-ppgtt-when-usi.patch b/0650-drm-i915-diable-huge-page-ppgtt-when-usi.patch similarity index 100% rename from 0652-drm-i915-diable-huge-page-ppgtt-when-usi.patch rename to 0650-drm-i915-diable-huge-page-ppgtt-when-usi.patch diff --git a/0653-INTERNAL-IOTG-drm-i915-Decouple-pipe-and.patch b/0651-INTERNAL-IOTG-drm-i915-Decouple-pipe-and.patch similarity index 100% rename from 0653-INTERNAL-IOTG-drm-i915-Decouple-pipe-and.patch rename to 0651-INTERNAL-IOTG-drm-i915-Decouple-pipe-and.patch diff --git a/0654-INTERNAL-IOTG-drm-Don-t-assume-that-the-.patch b/0652-INTERNAL-IOTG-drm-Don-t-assume-that-the-.patch similarity index 100% rename from 0654-INTERNAL-IOTG-drm-Don-t-assume-that-the-.patch rename to 0652-INTERNAL-IOTG-drm-Don-t-assume-that-the-.patch diff --git a/0655-INTERNAL-IOTG-drm-i915-Introduce-the-Pla.patch b/0653-INTERNAL-IOTG-drm-i915-Introduce-the-Pla.patch similarity index 100% rename from 0655-INTERNAL-IOTG-drm-i915-Introduce-the-Pla.patch rename to 0653-INTERNAL-IOTG-drm-i915-Introduce-the-Pla.patch diff --git a/0656-drm-i915-gvt-make-KBL-also-support-plane.patch b/0654-drm-i915-gvt-make-KBL-also-support-plane.patch similarity index 100% rename from 0656-drm-i915-gvt-make-KBL-also-support-plane.patch rename to 0654-drm-i915-gvt-make-KBL-also-support-plane.patch diff --git a/0657-kernel-drm-i915-Check-the-plane_state-fb.patch b/0655-kernel-drm-i915-Check-the-plane_state-fb.patch similarity index 100% rename from 0657-kernel-drm-i915-Check-the-plane_state-fb.patch rename to 0655-kernel-drm-i915-Check-the-plane_state-fb.patch diff --git a/0658-drm-i915-fix-a-kernel-panic-issue-of-pla.patch b/0656-drm-i915-fix-a-kernel-panic-issue-of-pla.patch similarity index 100% rename from 0658-drm-i915-fix-a-kernel-panic-issue-of-pla.patch rename to 0656-drm-i915-fix-a-kernel-panic-issue-of-pla.patch diff --git a/0659-drm-i915-gvt-ensure-each-pipe-has-a-plan.patch b/0657-drm-i915-gvt-ensure-each-pipe-has-a-plan.patch similarity index 100% rename from 0659-drm-i915-gvt-ensure-each-pipe-has-a-plan.patch rename to 0657-drm-i915-gvt-ensure-each-pipe-has-a-plan.patch diff --git a/0660-drm-i915-to-limit-the-supported-modifier.patch b/0658-drm-i915-to-limit-the-supported-modifier.patch similarity index 100% rename from 0660-drm-i915-to-limit-the-supported-modifier.patch rename to 0658-drm-i915-to-limit-the-supported-modifier.patch diff --git a/0661-drm-i915-Optimize-watermark-calculation-.patch b/0659-drm-i915-Optimize-watermark-calculation-.patch similarity index 100% rename from 0661-drm-i915-Optimize-watermark-calculation-.patch rename to 0659-drm-i915-Optimize-watermark-calculation-.patch diff --git a/0662-drm-i915-gvt-clean-up-the-cfg-space-and-.patch b/0660-drm-i915-gvt-clean-up-the-cfg-space-and-.patch similarity index 100% rename from 0662-drm-i915-gvt-clean-up-the-cfg-space-and-.patch rename to 0660-drm-i915-gvt-clean-up-the-cfg-space-and-.patch diff --git a/0663-drm-i915-gvt-use-plane-size-for-fb-decod.patch b/0661-drm-i915-gvt-use-plane-size-for-fb-decod.patch similarity index 100% rename from 0663-drm-i915-gvt-use-plane-size-for-fb-decod.patch rename to 0661-drm-i915-gvt-use-plane-size-for-fb-decod.patch diff --git a/0664-drm-i915-gvt-Forbid-command-to-access-no.patch b/0662-drm-i915-gvt-Forbid-command-to-access-no.patch similarity index 100% rename from 0664-drm-i915-gvt-Forbid-command-to-access-no.patch rename to 0662-drm-i915-gvt-Forbid-command-to-access-no.patch diff --git a/0665-drm-i915-gvt-Introduce-non-context-MMIO-.patch b/0663-drm-i915-gvt-Introduce-non-context-MMIO-.patch similarity index 100% rename from 0665-drm-i915-gvt-Introduce-non-context-MMIO-.patch rename to 0663-drm-i915-gvt-Introduce-non-context-MMIO-.patch diff --git a/0666-drm-i915-gvt-Enable-guest-conformance-de.patch b/0664-drm-i915-gvt-Enable-guest-conformance-de.patch similarity index 100% rename from 0666-drm-i915-gvt-Enable-guest-conformance-de.patch rename to 0664-drm-i915-gvt-Enable-guest-conformance-de.patch diff --git a/0667-drm-i915-gvt-Add-a-module-parameter-to-d.patch b/0665-drm-i915-gvt-Add-a-module-parameter-to-d.patch similarity index 100% rename from 0667-drm-i915-gvt-Add-a-module-parameter-to-d.patch rename to 0665-drm-i915-gvt-Add-a-module-parameter-to-d.patch diff --git a/0668-drm-i915-gvt-Skip-to-compare-force-nonpr.patch b/0666-drm-i915-gvt-Skip-to-compare-force-nonpr.patch similarity index 100% rename from 0668-drm-i915-gvt-Skip-to-compare-force-nonpr.patch rename to 0666-drm-i915-gvt-Skip-to-compare-force-nonpr.patch diff --git a/0669-drm-i915-gvt-Simply-the-conformance-chec.patch b/0667-drm-i915-gvt-Simply-the-conformance-chec.patch similarity index 100% rename from 0669-drm-i915-gvt-Simply-the-conformance-chec.patch rename to 0667-drm-i915-gvt-Simply-the-conformance-chec.patch diff --git a/0670-drm-i915-Fixed-uninitialized-variable-is.patch b/0668-drm-i915-Fixed-uninitialized-variable-is.patch similarity index 100% rename from 0670-drm-i915-Fixed-uninitialized-variable-is.patch rename to 0668-drm-i915-Fixed-uninitialized-variable-is.patch diff --git a/0671-drm-i915-Check-for-a-valid-fb-when-compu.patch b/0669-drm-i915-Check-for-a-valid-fb-when-compu.patch similarity index 100% rename from 0671-drm-i915-Check-for-a-valid-fb-when-compu.patch rename to 0669-drm-i915-Check-for-a-valid-fb-when-compu.patch diff --git a/0672-upstream-drm-i915-gvt-correct-mask-setti.patch b/0670-upstream-drm-i915-gvt-correct-mask-setti.patch similarity index 100% rename from 0672-upstream-drm-i915-gvt-correct-mask-setti.patch rename to 0670-upstream-drm-i915-gvt-correct-mask-setti.patch diff --git a/0673-drm-i915-gvt-Support-vgpu-workload-prior.patch b/0671-drm-i915-gvt-Support-vgpu-workload-prior.patch similarity index 100% rename from 0673-drm-i915-gvt-Support-vgpu-workload-prior.patch rename to 0671-drm-i915-gvt-Support-vgpu-workload-prior.patch diff --git a/0674-hyper_dmabuf-refine-Kconfig-and-Makefile.patch b/0672-hyper_dmabuf-refine-Kconfig-and-Makefile.patch similarity index 100% rename from 0674-hyper_dmabuf-refine-Kconfig-and-Makefile.patch rename to 0672-hyper_dmabuf-refine-Kconfig-and-Makefile.patch diff --git a/0675-hyper-dmabuf-disable-hyper-dmabuf-on-arc.patch b/0673-hyper-dmabuf-disable-hyper-dmabuf-on-arc.patch similarity index 100% rename from 0675-hyper-dmabuf-disable-hyper-dmabuf-on-arc.patch rename to 0673-hyper-dmabuf-disable-hyper-dmabuf-on-arc.patch diff --git a/0676-drm-i915-gvt-fix-kernel-panic-for-gvtbuf.patch b/0674-drm-i915-gvt-fix-kernel-panic-for-gvtbuf.patch similarity index 100% rename from 0676-drm-i915-gvt-fix-kernel-panic-for-gvtbuf.patch rename to 0674-drm-i915-gvt-fix-kernel-panic-for-gvtbuf.patch diff --git a/0677-drm-i915-gvt-rebase-gvtbuffer-to-use-ups.patch b/0675-drm-i915-gvt-rebase-gvtbuffer-to-use-ups.patch similarity index 100% rename from 0677-drm-i915-gvt-rebase-gvtbuffer-to-use-ups.patch rename to 0675-drm-i915-gvt-rebase-gvtbuffer-to-use-ups.patch diff --git a/0678-drm-i915-gvt-fix-missing-kernel-doc-for-.patch b/0676-drm-i915-gvt-fix-missing-kernel-doc-for-.patch similarity index 100% rename from 0678-drm-i915-gvt-fix-missing-kernel-doc-for-.patch rename to 0676-drm-i915-gvt-fix-missing-kernel-doc-for-.patch diff --git a/0679-drm-i915-gvt-not-to-touch-undefined-MOCS.patch b/0677-drm-i915-gvt-not-to-touch-undefined-MOCS.patch similarity index 100% rename from 0679-drm-i915-gvt-not-to-touch-undefined-MOCS.patch rename to 0677-drm-i915-gvt-not-to-touch-undefined-MOCS.patch diff --git a/0680-drm-i915-gvt-use-snprintf-instead-of-spr.patch b/0678-drm-i915-gvt-use-snprintf-instead-of-spr.patch similarity index 100% rename from 0680-drm-i915-gvt-use-snprintf-instead-of-spr.patch rename to 0678-drm-i915-gvt-use-snprintf-instead-of-spr.patch diff --git a/0681-drm-i915-gvt-check-the-pointer-before-us.patch b/0679-drm-i915-gvt-check-the-pointer-before-us.patch similarity index 100% rename from 0681-drm-i915-gvt-check-the-pointer-before-us.patch rename to 0679-drm-i915-gvt-check-the-pointer-before-us.patch diff --git a/0682-drm-i915-gvt-check-msg-length-before-use.patch b/0680-drm-i915-gvt-check-msg-length-before-use.patch similarity index 100% rename from 0682-drm-i915-gvt-check-msg-length-before-use.patch rename to 0680-drm-i915-gvt-check-msg-length-before-use.patch diff --git a/0683-kernel-remove-deprecated-VHM-IOCTLs.patch b/0681-kernel-remove-deprecated-VHM-IOCTLs.patch similarity index 100% rename from 0683-kernel-remove-deprecated-VHM-IOCTLs.patch rename to 0681-kernel-remove-deprecated-VHM-IOCTLs.patch diff --git a/0684-Fix-warnings-introduced-by-acrn.patch b/0682-Fix-warnings-introduced-by-acrn.patch similarity index 100% rename from 0684-Fix-warnings-introduced-by-acrn.patch rename to 0682-Fix-warnings-introduced-by-acrn.patch diff --git a/0685-drm-i915-gvt-fixed-a-memory-leak-issue-in.patch b/0683-drm-i915-gvt-fixed-a-memory-leak-issue-in.patch similarity index 100% rename from 0685-drm-i915-gvt-fixed-a-memory-leak-issue-in.patch rename to 0683-drm-i915-gvt-fixed-a-memory-leak-issue-in.patch diff --git a/0686-drm-i915-Sysfs-interface-to-get-GFX-shmem-.patch b/0684-drm-i915-Sysfs-interface-to-get-GFX-shmem-.patch similarity index 100% rename from 0686-drm-i915-Sysfs-interface-to-get-GFX-shmem-.patch rename to 0684-drm-i915-Sysfs-interface-to-get-GFX-shmem-.patch diff --git a/0687-drm-i915-Async-work-for-hdcp-authenticatio.patch b/0685-drm-i915-Async-work-for-hdcp-authenticatio.patch similarity index 100% rename from 0687-drm-i915-Async-work-for-hdcp-authenticatio.patch rename to 0685-drm-i915-Async-work-for-hdcp-authenticatio.patch diff --git a/0688-drm-i915-Commit-CP-without-modeset.patch b/0686-drm-i915-Commit-CP-without-modeset.patch similarity index 100% rename from 0688-drm-i915-Commit-CP-without-modeset.patch rename to 0686-drm-i915-Commit-CP-without-modeset.patch diff --git a/0689-MUST_REBASE-IOTG-drm-i915-Allow-late-GuC-H.patch b/0687-MUST_REBASE-IOTG-drm-i915-Allow-late-GuC-H.patch similarity index 100% rename from 0689-MUST_REBASE-IOTG-drm-i915-Allow-late-GuC-H.patch rename to 0687-MUST_REBASE-IOTG-drm-i915-Allow-late-GuC-H.patch diff --git a/0690-drm-i915-Passing-the-intel_connector-to-HD.patch b/0688-drm-i915-Passing-the-intel_connector-to-HD.patch similarity index 100% rename from 0690-drm-i915-Passing-the-intel_connector-to-HD.patch rename to 0688-drm-i915-Passing-the-intel_connector-to-HD.patch diff --git a/0691-drm-Add-CP-downstream_info-property.patch b/0689-drm-Add-CP-downstream_info-property.patch similarity index 100% rename from 0691-drm-Add-CP-downstream_info-property.patch rename to 0689-drm-Add-CP-downstream_info-property.patch diff --git a/0692-drm-Add-CP-System-Renewability-Msg-Propert.patch b/0690-drm-Add-CP-System-Renewability-Msg-Propert.patch similarity index 100% rename from 0692-drm-Add-CP-System-Renewability-Msg-Propert.patch rename to 0690-drm-Add-CP-System-Renewability-Msg-Propert.patch diff --git a/0693-drm-i915-Add-HDCP-SRM-Blob-parsing.patch b/0691-drm-i915-Add-HDCP-SRM-Blob-parsing.patch similarity index 100% rename from 0693-drm-i915-Add-HDCP-SRM-Blob-parsing.patch rename to 0691-drm-i915-Add-HDCP-SRM-Blob-parsing.patch diff --git a/0694-drm-i915-Add-revocation-check-on-Ksvs.patch b/0692-drm-i915-Add-revocation-check-on-Ksvs.patch similarity index 100% rename from 0694-drm-i915-Add-revocation-check-on-Ksvs.patch rename to 0692-drm-i915-Add-revocation-check-on-Ksvs.patch diff --git a/0695-i915-Add-cp_downstream-property.patch b/0693-i915-Add-cp_downstream-property.patch similarity index 100% rename from 0695-i915-Add-cp_downstream-property.patch rename to 0693-i915-Add-cp_downstream-property.patch diff --git a/0696-REVERTME-IOTG-drm-i915-Add-GuC-v9.29-and-H.patch b/0694-REVERTME-IOTG-drm-i915-Add-GuC-v9.29-and-H.patch similarity index 100% rename from 0696-REVERTME-IOTG-drm-i915-Add-GuC-v9.29-and-H.patch rename to 0694-REVERTME-IOTG-drm-i915-Add-GuC-v9.29-and-H.patch diff --git a/0697-drm-i915-Add-interface-to-set-ctm-post-off.patch b/0695-drm-i915-Add-interface-to-set-ctm-post-off.patch similarity index 100% rename from 0697-drm-i915-Add-interface-to-set-ctm-post-off.patch rename to 0695-drm-i915-Add-interface-to-set-ctm-post-off.patch diff --git a/0698-Allow-RenderNode-to-be-used-for-kms-getter.patch b/0696-Allow-RenderNode-to-be-used-for-kms-getter.patch similarity index 100% rename from 0698-Allow-RenderNode-to-be-used-for-kms-getter.patch rename to 0696-Allow-RenderNode-to-be-used-for-kms-getter.patch diff --git a/0699-reboot-add-reboot_panic-parameter.patch b/0697-reboot-add-reboot_panic-parameter.patch similarity index 100% rename from 0699-reboot-add-reboot_panic-parameter.patch rename to 0697-reboot-add-reboot_panic-parameter.patch diff --git a/0700-Debug-Add-register-dump.patch b/0698-Debug-Add-register-dump.patch similarity index 100% rename from 0700-Debug-Add-register-dump.patch rename to 0698-Debug-Add-register-dump.patch diff --git a/0701-stm-class-Rework-policy-node-fallback.patch b/0699-stm-class-Rework-policy-node-fallback.patch similarity index 100% rename from 0701-stm-class-Rework-policy-node-fallback.patch rename to 0699-stm-class-Rework-policy-node-fallback.patch diff --git a/0702-stm-class-Clarify-configfs-root-type-operatio.patch b/0700-stm-class-Clarify-configfs-root-type-operatio.patch similarity index 100% rename from 0702-stm-class-Clarify-configfs-root-type-operatio.patch rename to 0700-stm-class-Clarify-configfs-root-type-operatio.patch diff --git a/0703-stm-class-Clean-up-stp_configfs_init.patch b/0701-stm-class-Clean-up-stp_configfs_init.patch similarity index 100% rename from 0703-stm-class-Clean-up-stp_configfs_init.patch rename to 0701-stm-class-Clean-up-stp_configfs_init.patch diff --git a/0704-stm-class-Introduce-framing-protocol-drivers.patch b/0702-stm-class-Introduce-framing-protocol-drivers.patch similarity index 100% rename from 0704-stm-class-Introduce-framing-protocol-drivers.patch rename to 0702-stm-class-Introduce-framing-protocol-drivers.patch diff --git a/0705-stm-class-Add-a-helper-for-writing-data-packe.patch b/0703-stm-class-Add-a-helper-for-writing-data-packe.patch similarity index 100% rename from 0705-stm-class-Add-a-helper-for-writing-data-packe.patch rename to 0703-stm-class-Add-a-helper-for-writing-data-packe.patch diff --git a/0706-stm-class-Factor-out-default-framing-protocol.patch b/0704-stm-class-Factor-out-default-framing-protocol.patch similarity index 100% rename from 0706-stm-class-Factor-out-default-framing-protocol.patch rename to 0704-stm-class-Factor-out-default-framing-protocol.patch diff --git a/0707-stm-class-Switch-over-to-the-protocol-driver.patch b/0705-stm-class-Switch-over-to-the-protocol-driver.patch similarity index 100% rename from 0707-stm-class-Switch-over-to-the-protocol-driver.patch rename to 0705-stm-class-Switch-over-to-the-protocol-driver.patch diff --git a/0708-stm-class-Add-MIPI-SyS-T-protocol-support.patch b/0706-stm-class-Add-MIPI-SyS-T-protocol-support.patch similarity index 100% rename from 0708-stm-class-Add-MIPI-SyS-T-protocol-support.patch rename to 0706-stm-class-Add-MIPI-SyS-T-protocol-support.patch diff --git a/0709-stm-class-p_sys-t-Add-support-for-CLOCKSYNC-p.patch b/0707-stm-class-p_sys-t-Add-support-for-CLOCKSYNC-p.patch similarity index 100% rename from 0709-stm-class-p_sys-t-Add-support-for-CLOCKSYNC-p.patch rename to 0707-stm-class-p_sys-t-Add-support-for-CLOCKSYNC-p.patch diff --git a/0710-stm-class-p_sys-t-Document-the-configfs-inter.patch b/0708-stm-class-p_sys-t-Document-the-configfs-inter.patch similarity index 100% rename from 0710-stm-class-p_sys-t-Document-the-configfs-inter.patch rename to 0708-stm-class-p_sys-t-Document-the-configfs-inter.patch diff --git a/0711-stm-class-Document-the-MIPI-SyS-T-protocol-us.patch b/0709-stm-class-Document-the-MIPI-SyS-T-protocol-us.patch similarity index 100% rename from 0711-stm-class-Document-the-MIPI-SyS-T-protocol-us.patch rename to 0709-stm-class-Document-the-MIPI-SyS-T-protocol-us.patch diff --git a/0712-stm-class-Update-documentation-to-match-the-n.patch b/0710-stm-class-Update-documentation-to-match-the-n.patch similarity index 100% rename from 0712-stm-class-Update-documentation-to-match-the-n.patch rename to 0710-stm-class-Update-documentation-to-match-the-n.patch diff --git a/0713-stm-class-SPDX-ify-the-documentation.patch b/0711-stm-class-SPDX-ify-the-documentation.patch similarity index 100% rename from 0713-stm-class-SPDX-ify-the-documentation.patch rename to 0711-stm-class-SPDX-ify-the-documentation.patch diff --git a/0714-stm-class-heartbeat-Fix-whitespace.patch b/0712-stm-class-heartbeat-Fix-whitespace.patch similarity index 100% rename from 0714-stm-class-heartbeat-Fix-whitespace.patch rename to 0712-stm-class-heartbeat-Fix-whitespace.patch diff --git a/0715-lib-Add-memcat_p-paste-2-pointer-arrays-toget.patch b/0713-lib-Add-memcat_p-paste-2-pointer-arrays-toget.patch similarity index 100% rename from 0715-lib-Add-memcat_p-paste-2-pointer-arrays-toget.patch rename to 0713-lib-Add-memcat_p-paste-2-pointer-arrays-toget.patch diff --git a/0716-stm-class-Use-memcat_p.patch b/0714-stm-class-Use-memcat_p.patch similarity index 100% rename from 0716-stm-class-Use-memcat_p.patch rename to 0714-stm-class-Use-memcat_p.patch diff --git a/0717-lib-Fix-ia64-bootloader-linkage.patch b/0715-lib-Fix-ia64-bootloader-linkage.patch similarity index 100% rename from 0717-lib-Fix-ia64-bootloader-linkage.patch rename to 0715-lib-Fix-ia64-bootloader-linkage.patch diff --git a/0718-test-configs-use-for-clean-and-android-bare-metal-BA.patch b/0716-test-configs-use-for-clean-and-android-bare-metal-BA.patch similarity index 100% rename from 0718-test-configs-use-for-clean-and-android-bare-metal-BA.patch rename to 0716-test-configs-use-for-clean-and-android-bare-metal-BA.patch diff --git a/0719-platform-x86-add-sep-and-socwatch-drivers-without-so.patch b/0717-platform-x86-add-sep-and-socwatch-drivers-without-so.patch similarity index 100% rename from 0719-platform-x86-add-sep-and-socwatch-drivers-without-so.patch rename to 0717-platform-x86-add-sep-and-socwatch-drivers-without-so.patch diff --git a/0720-Fix-for-socwatch-build-error-that-occurs-if-CONFIG_T.patch b/0718-Fix-for-socwatch-build-error-that-occurs-if-CONFIG_T.patch similarity index 100% rename from 0720-Fix-for-socwatch-build-error-that-occurs-if-CONFIG_T.patch rename to 0718-Fix-for-socwatch-build-error-that-occurs-if-CONFIG_T.patch diff --git a/0721-SEP-some-cleanup.patch b/0719-SEP-some-cleanup.patch similarity index 100% rename from 0721-SEP-some-cleanup.patch rename to 0719-SEP-some-cleanup.patch diff --git a/0722-MUST_REBASE-Enable-plane-decryption-bit.patch b/0720-MUST_REBASE-Enable-plane-decryption-bit.patch similarity index 100% rename from 0722-MUST_REBASE-Enable-plane-decryption-bit.patch rename to 0720-MUST_REBASE-Enable-plane-decryption-bit.patch diff --git a/0723-Revert-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch b/0721-Revert-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch similarity index 100% rename from 0723-Revert-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch rename to 0721-Revert-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch diff --git a/0724-Revert-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch b/0722-Revert-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch similarity index 100% rename from 0724-Revert-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch rename to 0722-Revert-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch diff --git a/0725-ASoC-Intel-Restore-static-FE-declaration-for-bxt_tdf.patch b/0723-ASoC-Intel-Restore-static-FE-declaration-for-bxt_tdf.patch similarity index 100% rename from 0725-ASoC-Intel-Restore-static-FE-declaration-for-bxt_tdf.patch rename to 0723-ASoC-Intel-Restore-static-FE-declaration-for-bxt_tdf.patch diff --git a/0726-Revert-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch b/0724-Revert-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch similarity index 100% rename from 0726-Revert-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch rename to 0724-Revert-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch diff --git a/0727-Revert-ASoC-tdf8532-add-crit-sections.patch b/0725-Revert-ASoC-tdf8532-add-crit-sections.patch similarity index 100% rename from 0727-Revert-ASoC-tdf8532-add-crit-sections.patch rename to 0725-Revert-ASoC-tdf8532-add-crit-sections.patch diff --git a/0728-media-intel-ipu4-VIRT-Fix-video-buffer-double-free-i.patch b/0726-media-intel-ipu4-VIRT-Fix-video-buffer-double-free-i.patch similarity index 100% rename from 0728-media-intel-ipu4-VIRT-Fix-video-buffer-double-free-i.patch rename to 0726-media-intel-ipu4-VIRT-Fix-video-buffer-double-free-i.patch diff --git a/0729-ipu-virtio-Null-ptr-check-of-intel_ipu4_virtio_msg_p.patch b/0727-ipu-virtio-Null-ptr-check-of-intel_ipu4_virtio_msg_p.patch similarity index 100% rename from 0729-ipu-virtio-Null-ptr-check-of-intel_ipu4_virtio_msg_p.patch rename to 0727-ipu-virtio-Null-ptr-check-of-intel_ipu4_virtio_msg_p.patch diff --git a/0730-drm-i915-gvt-fix-array-index-mismatch-issue.patch b/0728-drm-i915-gvt-fix-array-index-mismatch-issue.patch similarity index 100% rename from 0730-drm-i915-gvt-fix-array-index-mismatch-issue.patch rename to 0728-drm-i915-gvt-fix-array-index-mismatch-issue.patch diff --git a/0731-drm-i915-gvt-add-plane-rotation-support-for-90-180-a.patch b/0729-drm-i915-gvt-add-plane-rotation-support-for-90-180-a.patch similarity index 100% rename from 0731-drm-i915-gvt-add-plane-rotation-support-for-90-180-a.patch rename to 0729-drm-i915-gvt-add-plane-rotation-support-for-90-180-a.patch diff --git a/0732-ipu-Fix-double-free-and-firmware-loading-issues.patch b/0730-ipu-Fix-double-free-and-firmware-loading-issues.patch similarity index 100% rename from 0732-ipu-Fix-double-free-and-firmware-loading-issues.patch rename to 0730-ipu-Fix-double-free-and-firmware-loading-issues.patch diff --git a/0733-drm-i915-Add-missing-decryption-bit-impleme.patch b/0731-drm-i915-Add-missing-decryption-bit-impleme.patch similarity index 100% rename from 0733-drm-i915-Add-missing-decryption-bit-impleme.patch rename to 0731-drm-i915-Add-missing-decryption-bit-impleme.patch diff --git a/0734-igb_avb-remove-the-unnecessary-exclusive-of.patch b/0732-igb_avb-remove-the-unnecessary-exclusive-of.patch similarity index 100% rename from 0734-igb_avb-remove-the-unnecessary-exclusive-of.patch rename to 0732-igb_avb-remove-the-unnecessary-exclusive-of.patch diff --git a/0735-ASoC-Intel-Skylake-refactor-memory-manageme.patch b/0733-ASoC-Intel-Skylake-refactor-memory-manageme.patch similarity index 100% rename from 0735-ASoC-Intel-Skylake-refactor-memory-manageme.patch rename to 0733-ASoC-Intel-Skylake-refactor-memory-manageme.patch diff --git a/0736-platform-x86-Fix-SEP-driver-license-header-.patch b/0734-platform-x86-Fix-SEP-driver-license-header-.patch similarity index 100% rename from 0736-platform-x86-Fix-SEP-driver-license-header-.patch rename to 0734-platform-x86-Fix-SEP-driver-license-header-.patch diff --git a/0737-Revert-Fix-for-cbc-kernel-driver-crash-duri.patch b/0735-Revert-Fix-for-cbc-kernel-driver-crash-duri.patch similarity index 100% rename from 0737-Revert-Fix-for-cbc-kernel-driver-crash-duri.patch rename to 0735-Revert-Fix-for-cbc-kernel-driver-crash-duri.patch diff --git a/0738-Revert-cbc-Avoid-rx-sequence-counter-mismat.patch b/0736-Revert-cbc-Avoid-rx-sequence-counter-mismat.patch similarity index 100% rename from 0738-Revert-cbc-Avoid-rx-sequence-counter-mismat.patch rename to 0736-Revert-cbc-Avoid-rx-sequence-counter-mismat.patch diff --git a/0739-Revert-Integration-of-CBC-line-discipline-k.patch b/0737-Revert-Integration-of-CBC-line-discipline-k.patch similarity index 100% rename from 0739-Revert-Integration-of-CBC-line-discipline-k.patch rename to 0737-Revert-Integration-of-CBC-line-discipline-k.patch diff --git a/0740-Integration-of-CBC-line-discipline-kernel-m.patch b/0738-Integration-of-CBC-line-discipline-kernel-m.patch similarity index 100% rename from 0740-Integration-of-CBC-line-discipline-kernel-m.patch rename to 0738-Integration-of-CBC-line-discipline-kernel-m.patch diff --git a/0741-cbc-Avoid-rx-sequence-counter-mismatch-warn.patch b/0739-cbc-Avoid-rx-sequence-counter-mismatch-warn.patch similarity index 100% rename from 0741-cbc-Avoid-rx-sequence-counter-mismatch-warn.patch rename to 0739-cbc-Avoid-rx-sequence-counter-mismatch-warn.patch diff --git a/0742-Fix-for-cbc-kernel-driver-crash-during-warm.patch b/0740-Fix-for-cbc-kernel-driver-crash-during-warm.patch similarity index 100% rename from 0742-Fix-for-cbc-kernel-driver-crash-during-warm.patch rename to 0740-Fix-for-cbc-kernel-driver-crash-during-warm.patch diff --git a/0743-Fix-the-race-in-cbc-buffer-queue.patch b/0741-Fix-the-race-in-cbc-buffer-queue.patch similarity index 100% rename from 0743-Fix-the-race-in-cbc-buffer-queue.patch rename to 0741-Fix-the-race-in-cbc-buffer-queue.patch diff --git a/0744-v4.19.5-update-fixup-smack_lsm.c.patch b/0742-v4.19.5-update-fixup-smack_lsm.c.patch similarity index 100% rename from 0744-v4.19.5-update-fixup-smack_lsm.c.patch rename to 0742-v4.19.5-update-fixup-smack_lsm.c.patch diff --git a/0745-v4.19.5-update-fix-up-intel_display.c.patch b/0743-v4.19.5-update-fix-up-intel_display.c.patch similarity index 100% rename from 0745-v4.19.5-update-fix-up-intel_display.c.patch rename to 0743-v4.19.5-update-fix-up-intel_display.c.patch diff --git a/0746-mmc-move-it-earlier-in-drivers-Makefile.patch b/0744-mmc-move-it-earlier-in-drivers-Makefile.patch similarity index 100% rename from 0746-mmc-move-it-earlier-in-drivers-Makefile.patch rename to 0744-mmc-move-it-earlier-in-drivers-Makefile.patch diff --git a/0747-ASoC-Intel-Skylake-Acquire-irq-after-RIRB-allocation.patch b/0745-ASoC-Intel-Skylake-Acquire-irq-after-RIRB-allocation.patch similarity index 100% rename from 0747-ASoC-Intel-Skylake-Acquire-irq-after-RIRB-allocation.patch rename to 0745-ASoC-Intel-Skylake-Acquire-irq-after-RIRB-allocation.patch diff --git a/0748-media-intel-ipu4-ICI-Use-fixed-delay-to-avo.patch b/0746-media-intel-ipu4-ICI-Use-fixed-delay-to-avo.patch similarity index 100% rename from 0748-media-intel-ipu4-ICI-Use-fixed-delay-to-avo.patch rename to 0746-media-intel-ipu4-ICI-Use-fixed-delay-to-avo.patch diff --git a/0749-media-intel-ipu4-VIRT-Add-mutex-to-avoid-ra.patch b/0747-media-intel-ipu4-VIRT-Add-mutex-to-avoid-ra.patch similarity index 100% rename from 0749-media-intel-ipu4-VIRT-Add-mutex-to-avoid-ra.patch rename to 0747-media-intel-ipu4-VIRT-Add-mutex-to-avoid-ra.patch diff --git a/0750-media-intel-ipu4-use-softlink-instead-of-sh.patch b/0748-media-intel-ipu4-use-softlink-instead-of-sh.patch similarity index 100% rename from 0750-media-intel-ipu4-use-softlink-instead-of-sh.patch rename to 0748-media-intel-ipu4-use-softlink-instead-of-sh.patch diff --git a/0751-media-intel-ipu4-refine-ipu_fw_isys_close-m.patch b/0749-media-intel-ipu4-refine-ipu_fw_isys_close-m.patch similarity index 100% rename from 0751-media-intel-ipu4-refine-ipu_fw_isys_close-m.patch rename to 0749-media-intel-ipu4-refine-ipu_fw_isys_close-m.patch diff --git a/0752-igb_avb-fix-kernel-panic-in-S3-process.patch b/0750-igb_avb-fix-kernel-panic-in-S3-process.patch similarity index 100% rename from 0752-igb_avb-fix-kernel-panic-in-S3-process.patch rename to 0750-igb_avb-fix-kernel-panic-in-S3-process.patch diff --git a/0753-panic-add-options-to-print-system-info-when.patch b/0751-panic-add-options-to-print-system-info-when.patch similarity index 100% rename from 0753-panic-add-options-to-print-system-info-when.patch rename to 0751-panic-add-options-to-print-system-info-when.patch diff --git a/0754-media-intel-ipu4-adv7481_hdmi-Fix-S3-resume.patch b/0752-media-intel-ipu4-adv7481_hdmi-Fix-S3-resume.patch similarity index 100% rename from 0754-media-intel-ipu4-adv7481_hdmi-Fix-S3-resume.patch rename to 0752-media-intel-ipu4-adv7481_hdmi-Fix-S3-resume.patch diff --git a/0755-Fix-iommu-dma-memory-mapping-failure.patch b/0753-Fix-iommu-dma-memory-mapping-failure.patch similarity index 100% rename from 0755-Fix-iommu-dma-memory-mapping-failure.patch rename to 0753-Fix-iommu-dma-memory-mapping-failure.patch diff --git a/0756-kernel-Revert-x86-acrn-add-write_msi-pv-ops.patch b/0754-kernel-Revert-x86-acrn-add-write_msi-pv-ops.patch similarity index 100% rename from 0756-kernel-Revert-x86-acrn-add-write_msi-pv-ops.patch rename to 0754-kernel-Revert-x86-acrn-add-write_msi-pv-ops.patch diff --git a/0757-Fixing-doc-build-caused-by-linux-vbs-vbs.h.patch b/0755-Fixing-doc-build-caused-by-linux-vbs-vbs.h.patch similarity index 100% rename from 0757-Fixing-doc-build-caused-by-linux-vbs-vbs.h.patch rename to 0755-Fixing-doc-build-caused-by-linux-vbs-vbs.h.patch diff --git a/0758-SOS-Guest-x2APIC-support-for-SOS.patch b/0756-SOS-Guest-x2APIC-support-for-SOS.patch similarity index 100% rename from 0758-SOS-Guest-x2APIC-support-for-SOS.patch rename to 0756-SOS-Guest-x2APIC-support-for-SOS.patch diff --git a/0759-vhm-Add-ioctl-IC_CLEAR_VM_IOREQ-to-cleanup-.patch b/0757-vhm-Add-ioctl-IC_CLEAR_VM_IOREQ-to-cleanup-.patch similarity index 100% rename from 0759-vhm-Add-ioctl-IC_CLEAR_VM_IOREQ-to-cleanup-.patch rename to 0757-vhm-Add-ioctl-IC_CLEAR_VM_IOREQ-to-cleanup-.patch diff --git a/0760-vhm-mark-ioreq-completed-in-acrn_ioreq_comp.patch b/0758-vhm-mark-ioreq-completed-in-acrn_ioreq_comp.patch similarity index 100% rename from 0760-vhm-mark-ioreq-completed-in-acrn_ioreq_comp.patch rename to 0758-vhm-mark-ioreq-completed-in-acrn_ioreq_comp.patch diff --git a/0761-vhm-support-polling-mode-of-ioreq-completio.patch b/0759-vhm-support-polling-mode-of-ioreq-completio.patch similarity index 100% rename from 0761-vhm-support-polling-mode-of-ioreq-completio.patch rename to 0759-vhm-support-polling-mode-of-ioreq-completio.patch diff --git a/0762-HVLog-Fix-typo-and-refine-sbuf_hvlog_index.patch b/0760-HVLog-Fix-typo-and-refine-sbuf_hvlog_index.patch similarity index 100% rename from 0762-HVLog-Fix-typo-and-refine-sbuf_hvlog_index.patch rename to 0760-HVLog-Fix-typo-and-refine-sbuf_hvlog_index.patch diff --git a/0763-vhm-remove-reserve-memory-for-trusty.patch b/0761-vhm-remove-reserve-memory-for-trusty.patch similarity index 100% rename from 0763-vhm-remove-reserve-memory-for-trusty.patch rename to 0761-vhm-remove-reserve-memory-for-trusty.patch diff --git a/0764-VBS-export-vbs-symbols.patch b/0762-VBS-export-vbs-symbols.patch similarity index 100% rename from 0764-VBS-export-vbs-symbols.patch rename to 0762-VBS-export-vbs-symbols.patch diff --git a/0765-drm-i915-gvt-fix-gvtbuffer-ioctl-tile-forma.patch b/0763-drm-i915-gvt-fix-gvtbuffer-ioctl-tile-forma.patch similarity index 100% rename from 0765-drm-i915-gvt-fix-gvtbuffer-ioctl-tile-forma.patch rename to 0763-drm-i915-gvt-fix-gvtbuffer-ioctl-tile-forma.patch diff --git a/0766-drm-i915-gvt-remove-tag-from-vGPU-context-I.patch b/0764-drm-i915-gvt-remove-tag-from-vGPU-context-I.patch similarity index 100% rename from 0766-drm-i915-gvt-remove-tag-from-vGPU-context-I.patch rename to 0764-drm-i915-gvt-remove-tag-from-vGPU-context-I.patch diff --git a/0767-Revert-drm-i915-gvt-hard-code-Pipe-B-plane-.patch b/0765-Revert-drm-i915-gvt-hard-code-Pipe-B-plane-.patch similarity index 100% rename from 0767-Revert-drm-i915-gvt-hard-code-Pipe-B-plane-.patch rename to 0765-Revert-drm-i915-gvt-hard-code-Pipe-B-plane-.patch diff --git a/0768-Kernel-VHM-Use-the-bit_op-to-remove-the-vol.patch b/0766-Kernel-VHM-Use-the-bit_op-to-remove-the-vol.patch similarity index 100% rename from 0768-Kernel-VHM-Use-the-bit_op-to-remove-the-vol.patch rename to 0766-Kernel-VHM-Use-the-bit_op-to-remove-the-vol.patch diff --git a/0769-Kernel-VHM-Use-the-traped-pci_access-addr-b.patch b/0767-Kernel-VHM-Use-the-traped-pci_access-addr-b.patch similarity index 100% rename from 0769-Kernel-VHM-Use-the-traped-pci_access-addr-b.patch rename to 0767-Kernel-VHM-Use-the-traped-pci_access-addr-b.patch diff --git a/0770-kernel-VHM-Fix-race-condition-in-ioreq_clie.patch b/0768-kernel-VHM-Fix-race-condition-in-ioreq_clie.patch similarity index 100% rename from 0770-kernel-VHM-Fix-race-condition-in-ioreq_clie.patch rename to 0768-kernel-VHM-Fix-race-condition-in-ioreq_clie.patch diff --git a/0771-Kernel-VHM-refine-the-refcnt-of-vhm_vm-so-t.patch b/0769-Kernel-VHM-refine-the-refcnt-of-vhm_vm-so-t.patch similarity index 100% rename from 0771-Kernel-VHM-refine-the-refcnt-of-vhm_vm-so-t.patch rename to 0769-Kernel-VHM-refine-the-refcnt-of-vhm_vm-so-t.patch diff --git a/0772-i915-temporarily-disable-a-gem-assert.patch b/0770-i915-temporarily-disable-a-gem-assert.patch similarity index 100% rename from 0772-i915-temporarily-disable-a-gem-assert.patch rename to 0770-i915-temporarily-disable-a-gem-assert.patch diff --git a/0773-i915-make-driver-init-async.patch b/0771-i915-make-driver-init-async.patch similarity index 100% rename from 0773-i915-make-driver-init-async.patch rename to 0771-i915-make-driver-init-async.patch diff --git a/0774-ASoC-Intel-Skylake-Export-skylake-functions.patch b/0772-ASoC-Intel-Skylake-Export-skylake-functions.patch similarity index 100% rename from 0774-ASoC-Intel-Skylake-Export-skylake-functions.patch rename to 0772-ASoC-Intel-Skylake-Export-skylake-functions.patch diff --git a/0775-ASoC-Intel-Skylake-Modify-skl_platform_regi.patch b/0773-ASoC-Intel-Skylake-Modify-skl_platform_regi.patch similarity index 100% rename from 0775-ASoC-Intel-Skylake-Modify-skl_platform_regi.patch rename to 0773-ASoC-Intel-Skylake-Modify-skl_platform_regi.patch diff --git a/0776-ASoC-Intel-Skylake-Add-Kconfig-options-for-.patch b/0774-ASoC-Intel-Skylake-Add-Kconfig-options-for-.patch similarity index 100% rename from 0776-ASoC-Intel-Skylake-Add-Kconfig-options-for-.patch rename to 0774-ASoC-Intel-Skylake-Add-Kconfig-options-for-.patch diff --git a/0777-ASoC-Intel-Skylake-Add-support-for-Virtio-S.patch b/0775-ASoC-Intel-Skylake-Add-support-for-Virtio-S.patch similarity index 100% rename from 0777-ASoC-Intel-Skylake-Add-support-for-Virtio-S.patch rename to 0775-ASoC-Intel-Skylake-Add-support-for-Virtio-S.patch diff --git a/0778-ASoC-Intel-Skylake-Register-virtualization-.patch b/0776-ASoC-Intel-Skylake-Register-virtualization-.patch similarity index 100% rename from 0778-ASoC-Intel-Skylake-Register-virtualization-.patch rename to 0776-ASoC-Intel-Skylake-Register-virtualization-.patch diff --git a/0779-ASoC-Intel-Skylake-Notify-BE-about-stream-u.patch b/0777-ASoC-Intel-Skylake-Notify-BE-about-stream-u.patch similarity index 100% rename from 0779-ASoC-Intel-Skylake-Notify-BE-about-stream-u.patch rename to 0777-ASoC-Intel-Skylake-Notify-BE-about-stream-u.patch diff --git a/0780-ASoC-Intel-Skylake-Workarounds-for-virtuali.patch b/0778-ASoC-Intel-Skylake-Workarounds-for-virtuali.patch similarity index 100% rename from 0780-ASoC-Intel-Skylake-Workarounds-for-virtuali.patch rename to 0778-ASoC-Intel-Skylake-Workarounds-for-virtuali.patch diff --git a/0781-ASoC-Intel-Skylake-Virt-Add-virtualization-.patch b/0779-ASoC-Intel-Skylake-Virt-Add-virtualization-.patch similarity index 100% rename from 0781-ASoC-Intel-Skylake-Virt-Add-virtualization-.patch rename to 0779-ASoC-Intel-Skylake-Virt-Add-virtualization-.patch diff --git a/0782-tc-Add-support-for-configuring-the-taprio-s.patch b/0780-tc-Add-support-for-configuring-the-taprio-s.patch similarity index 100% rename from 0782-tc-Add-support-for-configuring-the-taprio-s.patch rename to 0780-tc-Add-support-for-configuring-the-taprio-s.patch diff --git a/0783-REVERTME-ASoC-Add-error-handling-for-stream.patch b/0781-REVERTME-ASoC-Add-error-handling-for-stream.patch similarity index 100% rename from 0783-REVERTME-ASoC-Add-error-handling-for-stream.patch rename to 0781-REVERTME-ASoC-Add-error-handling-for-stream.patch diff --git a/0784-ASoC-tdf8532-Account-for-critical-sections.patch b/0782-ASoC-tdf8532-Account-for-critical-sections.patch similarity index 100% rename from 0784-ASoC-tdf8532-Account-for-critical-sections.patch rename to 0782-ASoC-tdf8532-Account-for-critical-sections.patch diff --git a/0785-platform-x86-sep-socwatchhv-driver-and-code.patch b/0783-platform-x86-sep-socwatchhv-driver-and-code.patch similarity index 100% rename from 0785-platform-x86-sep-socwatchhv-driver-and-code.patch rename to 0783-platform-x86-sep-socwatchhv-driver-and-code.patch diff --git a/0786-Asoc-Intel-Skylake-display-firmware-name-an.patch b/0784-Asoc-Intel-Skylake-display-firmware-name-an.patch similarity index 100% rename from 0786-Asoc-Intel-Skylake-display-firmware-name-an.patch rename to 0784-Asoc-Intel-Skylake-display-firmware-name-an.patch diff --git a/0787-ASoc-Intel-Skylake-Fix-build-issue-in-skl-v.patch b/0785-ASoc-Intel-Skylake-Fix-build-issue-in-skl-v.patch similarity index 100% rename from 0787-ASoc-Intel-Skylake-Fix-build-issue-in-skl-v.patch rename to 0785-ASoc-Intel-Skylake-Fix-build-issue-in-skl-v.patch diff --git a/0788-VHM-Check-null-pointer-of-vhm_req-before-up.patch b/0786-VHM-Check-null-pointer-of-vhm_req-before-up.patch similarity index 100% rename from 0788-VHM-Check-null-pointer-of-vhm_req-before-up.patch rename to 0786-VHM-Check-null-pointer-of-vhm_req-before-up.patch diff --git a/0789-vhm-Correct-the-parameters-usage-in-find_ne.patch b/0787-vhm-Correct-the-parameters-usage-in-find_ne.patch similarity index 100% rename from 0789-vhm-Correct-the-parameters-usage-in-find_ne.patch rename to 0787-vhm-Correct-the-parameters-usage-in-find_ne.patch diff --git a/0790-kernel-VHM-Add-the-vm-owner-for-each-ioreq_.patch b/0788-kernel-VHM-Add-the-vm-owner-for-each-ioreq_.patch similarity index 100% rename from 0790-kernel-VHM-Add-the-vm-owner-for-each-ioreq_.patch rename to 0788-kernel-VHM-Add-the-vm-owner-for-each-ioreq_.patch diff --git a/0791-Kernel-VHM-VM_list-changes-the-lock-from-mu.patch b/0789-Kernel-VHM-VM_list-changes-the-lock-from-mu.patch similarity index 100% rename from 0791-Kernel-VHM-VM_list-changes-the-lock-from-mu.patch rename to 0789-Kernel-VHM-VM_list-changes-the-lock-from-mu.patch diff --git a/0792-Kernel-VHM-Refine-the-usage-of-spinlock-in-.patch b/0790-Kernel-VHM-Refine-the-usage-of-spinlock-in-.patch similarity index 100% rename from 0792-Kernel-VHM-Refine-the-usage-of-spinlock-in-.patch rename to 0790-Kernel-VHM-Refine-the-usage-of-spinlock-in-.patch diff --git a/0793-drm-i915-gvt-emulate-correct-state-of-SKL_F.patch b/0791-drm-i915-gvt-emulate-correct-state-of-SKL_F.patch similarity index 100% rename from 0793-drm-i915-gvt-emulate-correct-state-of-SKL_F.patch rename to 0791-drm-i915-gvt-emulate-correct-state-of-SKL_F.patch diff --git a/0794-VBS-K-use-kernel-virtio-header-files.patch b/0792-VBS-K-use-kernel-virtio-header-files.patch similarity index 100% rename from 0794-VBS-K-use-kernel-virtio-header-files.patch rename to 0792-VBS-K-use-kernel-virtio-header-files.patch diff --git a/0795-virtio_blk-add-discard-and-write-zeroes-sup.patch b/0793-virtio_blk-add-discard-and-write-zeroes-sup.patch similarity index 100% rename from 0795-virtio_blk-add-discard-and-write-zeroes-sup.patch rename to 0793-virtio_blk-add-discard-and-write-zeroes-sup.patch diff --git a/0796-ASoc-Intel-Skylake-Pass-correct-parameter-t.patch b/0794-ASoc-Intel-Skylake-Pass-correct-parameter-t.patch similarity index 100% rename from 0796-ASoc-Intel-Skylake-Pass-correct-parameter-t.patch rename to 0794-ASoc-Intel-Skylake-Pass-correct-parameter-t.patch diff --git a/0797-mei-virtio-fix-queue-flush-with-non-empty-v.patch b/0795-mei-virtio-fix-queue-flush-with-non-empty-v.patch similarity index 100% rename from 0797-mei-virtio-fix-queue-flush-with-non-empty-v.patch rename to 0795-mei-virtio-fix-queue-flush-with-non-empty-v.patch diff --git a/0798-mei-dal-fix-race-in-bh_request-completion.patch b/0796-mei-dal-fix-race-in-bh_request-completion.patch similarity index 100% rename from 0798-mei-dal-fix-race-in-bh_request-completion.patch rename to 0796-mei-dal-fix-race-in-bh_request-completion.patch diff --git a/0799-mei-dal-fix-a-race-in-bh_request.patch b/0797-mei-dal-fix-a-race-in-bh_request.patch similarity index 100% rename from 0799-mei-dal-fix-a-race-in-bh_request.patch rename to 0797-mei-dal-fix-a-race-in-bh_request.patch diff --git a/0800-rcu-Do-RCU-GP-kthread-self-wakeup-from-soft.patch b/0798-rcu-Do-RCU-GP-kthread-self-wakeup-from-soft.patch similarity index 100% rename from 0800-rcu-Do-RCU-GP-kthread-self-wakeup-from-soft.patch rename to 0798-rcu-Do-RCU-GP-kthread-self-wakeup-from-soft.patch diff --git a/0801-drm-i915-execlists-Force-preemption-via-res.patch b/0799-drm-i915-execlists-Force-preemption-via-res.patch similarity index 100% rename from 0801-drm-i915-execlists-Force-preemption-via-res.patch rename to 0799-drm-i915-execlists-Force-preemption-via-res.patch diff --git a/0802-drm-i915-execlists-Try-preempt-reset-from-h.patch b/0800-drm-i915-execlists-Try-preempt-reset-from-h.patch similarity index 100% rename from 0802-drm-i915-execlists-Try-preempt-reset-from-h.patch rename to 0800-drm-i915-execlists-Try-preempt-reset-from-h.patch diff --git a/0803-drm-i915-preemption-Select-timeout-when-sch.patch b/0801-drm-i915-preemption-Select-timeout-when-sch.patch similarity index 100% rename from 0803-drm-i915-preemption-Select-timeout-when-sch.patch rename to 0801-drm-i915-preemption-Select-timeout-when-sch.patch diff --git a/0804-drm-i915-Use-a-preemption-timeout-to-enforc.patch b/0802-drm-i915-Use-a-preemption-timeout-to-enforc.patch similarity index 100% rename from 0804-drm-i915-Use-a-preemption-timeout-to-enforc.patch rename to 0802-drm-i915-Use-a-preemption-timeout-to-enforc.patch diff --git a/0805-drm-i915-Allow-user-control-over-preempt-ti.patch b/0803-drm-i915-Allow-user-control-over-preempt-ti.patch similarity index 100% rename from 0805-drm-i915-Allow-user-control-over-preempt-ti.patch rename to 0803-drm-i915-Allow-user-control-over-preempt-ti.patch diff --git a/0806-media-intel-ipu4-add-timestamp-info-in-driv.patch b/0804-media-intel-ipu4-add-timestamp-info-in-driv.patch similarity index 100% rename from 0806-media-intel-ipu4-add-timestamp-info-in-driv.patch rename to 0804-media-intel-ipu4-add-timestamp-info-in-driv.patch diff --git a/0807-media-ov2775-Update-v4l2-ctrl-setting.patch b/0805-media-ov2775-Update-v4l2-ctrl-setting.patch similarity index 100% rename from 0807-media-ov2775-Update-v4l2-ctrl-setting.patch rename to 0805-media-ov2775-Update-v4l2-ctrl-setting.patch diff --git a/0808-media-Buttress-base-addr-interface.patch b/0806-media-Buttress-base-addr-interface.patch similarity index 100% rename from 0808-media-Buttress-base-addr-interface.patch rename to 0806-media-Buttress-base-addr-interface.patch diff --git a/0809-media-intel-ipu4-ox03a10-set-hflip-default.patch b/0807-media-intel-ipu4-ox03a10-set-hflip-default.patch similarity index 100% rename from 0809-media-intel-ipu4-ox03a10-set-hflip-default.patch rename to 0807-media-intel-ipu4-ox03a10-set-hflip-default.patch diff --git a/0810-media-intel-ipu4-magna-Modify-for-dual-magn.patch b/0808-media-intel-ipu4-magna-Modify-for-dual-magn.patch similarity index 100% rename from 0810-media-intel-ipu4-magna-Modify-for-dual-magn.patch rename to 0808-media-intel-ipu4-magna-Modify-for-dual-magn.patch diff --git a/0811-media-ov2775-update-register-setting.patch b/0809-media-ov2775-update-register-setting.patch similarity index 100% rename from 0811-media-ov2775-update-register-setting.patch rename to 0809-media-ov2775-update-register-setting.patch diff --git a/0812-media-intel-ipu4-be-soc-Set-NV16-input-form.patch b/0810-media-intel-ipu4-be-soc-Set-NV16-input-form.patch similarity index 100% rename from 0812-media-intel-ipu4-be-soc-Set-NV16-input-form.patch rename to 0810-media-intel-ipu4-be-soc-Set-NV16-input-form.patch diff --git a/0813-media-ti964-pdata-for-AS_1140.patch b/0811-media-ti964-pdata-for-AS_1140.patch similarity index 100% rename from 0813-media-ti964-pdata-for-AS_1140.patch rename to 0811-media-ti964-pdata-for-AS_1140.patch diff --git a/0814-media-ti964-add-magna-subdev-for-2nd-ti964.patch b/0812-media-ti964-add-magna-subdev-for-2nd-ti964.patch similarity index 100% rename from 0814-media-ti964-add-magna-subdev-for-2nd-ti964.patch rename to 0812-media-ti964-add-magna-subdev-for-2nd-ti964.patch diff --git a/0815-media-intel-ipu4-css-scci_IPU4_master_20181.patch b/0813-media-intel-ipu4-css-scci_IPU4_master_20181.patch similarity index 100% rename from 0815-media-intel-ipu4-css-scci_IPU4_master_20181.patch rename to 0813-media-intel-ipu4-css-scci_IPU4_master_20181.patch diff --git a/0816-media-intel-ipu4-css-scci_IPU4_master_20181.patch b/0814-media-intel-ipu4-css-scci_IPU4_master_20181.patch similarity index 100% rename from 0816-media-intel-ipu4-css-scci_IPU4_master_20181.patch rename to 0814-media-intel-ipu4-css-scci_IPU4_master_20181.patch diff --git a/0817-media-intel-ipu4-fix-build-warning.patch b/0815-media-intel-ipu4-fix-build-warning.patch similarity index 100% rename from 0817-media-intel-ipu4-fix-build-warning.patch rename to 0815-media-intel-ipu4-fix-build-warning.patch diff --git a/0818-media-intel-ipu4-VIRT-Use-pointer-for-sync-.patch b/0816-media-intel-ipu4-VIRT-Use-pointer-for-sync-.patch similarity index 100% rename from 0818-media-intel-ipu4-VIRT-Use-pointer-for-sync-.patch rename to 0816-media-intel-ipu4-VIRT-Use-pointer-for-sync-.patch diff --git a/0819-media-intel-ipu4-VIRT-Psys-mediation-stub-p.patch b/0817-media-intel-ipu4-VIRT-Psys-mediation-stub-p.patch similarity index 100% rename from 0819-media-intel-ipu4-VIRT-Psys-mediation-stub-p.patch rename to 0817-media-intel-ipu4-VIRT-Psys-mediation-stub-p.patch diff --git a/0820-media-intel-ipu4-VIRT-Psys-mediation-connec.patch b/0818-media-intel-ipu4-VIRT-Psys-mediation-connec.patch similarity index 100% rename from 0820-media-intel-ipu4-VIRT-Psys-mediation-connec.patch rename to 0818-media-intel-ipu4-VIRT-Psys-mediation-connec.patch diff --git a/0821-media-intel-ipu4-VIRT-Support-for-PSYS-BE.patch b/0819-media-intel-ipu4-VIRT-Support-for-PSYS-BE.patch similarity index 100% rename from 0821-media-intel-ipu4-VIRT-Support-for-PSYS-BE.patch rename to 0819-media-intel-ipu4-VIRT-Support-for-PSYS-BE.patch diff --git a/0822-media-intel-ipu4-VIRT-Add-support-for-getbu.patch b/0820-media-intel-ipu4-VIRT-Add-support-for-getbu.patch similarity index 100% rename from 0822-media-intel-ipu4-VIRT-Add-support-for-getbu.patch rename to 0820-media-intel-ipu4-VIRT-Add-support-for-getbu.patch diff --git a/0823-media-intel-ipu4-VIRT-Add-support-for-dqeve.patch b/0821-media-intel-ipu4-VIRT-Add-support-for-dqeve.patch similarity index 100% rename from 0823-media-intel-ipu4-VIRT-Add-support-for-dqeve.patch rename to 0821-media-intel-ipu4-VIRT-Add-support-for-dqeve.patch diff --git a/0824-media-intel-ipu4-VIRT-Add-support-for-IPU_I.patch b/0822-media-intel-ipu4-VIRT-Add-support-for-IPU_I.patch similarity index 100% rename from 0824-media-intel-ipu4-VIRT-Add-support-for-IPU_I.patch rename to 0822-media-intel-ipu4-VIRT-Add-support-for-IPU_I.patch diff --git a/0825-media-intel-ipu4-VIRT-Add-32-bits-IOTCL-sup.patch b/0823-media-intel-ipu4-VIRT-Add-32-bits-IOTCL-sup.patch similarity index 100% rename from 0825-media-intel-ipu4-VIRT-Add-32-bits-IOTCL-sup.patch rename to 0823-media-intel-ipu4-VIRT-Add-32-bits-IOTCL-sup.patch diff --git a/0826-media-intel-ipu4-VIRT-Add-class_create-for-.patch b/0824-media-intel-ipu4-VIRT-Add-class_create-for-.patch similarity index 100% rename from 0826-media-intel-ipu4-VIRT-Add-class_create-for-.patch rename to 0824-media-intel-ipu4-VIRT-Add-class_create-for-.patch diff --git a/0827-media-intel-ipu4-VIRT-Fix-1st-run-hang-and-.patch b/0825-media-intel-ipu4-VIRT-Fix-1st-run-hang-and-.patch similarity index 100% rename from 0827-media-intel-ipu4-VIRT-Fix-1st-run-hang-and-.patch rename to 0825-media-intel-ipu4-VIRT-Fix-1st-run-hang-and-.patch diff --git a/0828-media-intel-ipu4-VIRT-Move-the-PYSY-buffer-.patch b/0826-media-intel-ipu4-VIRT-Move-the-PYSY-buffer-.patch similarity index 100% rename from 0828-media-intel-ipu4-VIRT-Move-the-PYSY-buffer-.patch rename to 0826-media-intel-ipu4-VIRT-Move-the-PYSY-buffer-.patch diff --git a/0829-media-intel-ipu4-VIRT-Use-actual-object-siz.patch b/0827-media-intel-ipu4-VIRT-Use-actual-object-siz.patch similarity index 100% rename from 0829-media-intel-ipu4-VIRT-Use-actual-object-siz.patch rename to 0827-media-intel-ipu4-VIRT-Use-actual-object-siz.patch diff --git a/0830-media-intel-ipu4-VIRT-Add-timeout-to-front-.patch b/0828-media-intel-ipu4-VIRT-Add-timeout-to-front-.patch similarity index 100% rename from 0830-media-intel-ipu4-VIRT-Add-timeout-to-front-.patch rename to 0828-media-intel-ipu4-VIRT-Add-timeout-to-front-.patch diff --git a/0831-media-intel-ipu4-VIRT-Fixed-function-exit-t.patch b/0829-media-intel-ipu4-VIRT-Fixed-function-exit-t.patch similarity index 100% rename from 0831-media-intel-ipu4-VIRT-Fixed-function-exit-t.patch rename to 0829-media-intel-ipu4-VIRT-Fixed-function-exit-t.patch diff --git a/0832-media-intel-ipu4-VIRT-Use-native-driver-fun.patch b/0830-media-intel-ipu4-VIRT-Use-native-driver-fun.patch similarity index 100% rename from 0832-media-intel-ipu4-VIRT-Use-native-driver-fun.patch rename to 0830-media-intel-ipu4-VIRT-Use-native-driver-fun.patch diff --git a/0833-media-ici-Change-value-of-ICI_FORMAT_RGB565.patch b/0831-media-ici-Change-value-of-ICI_FORMAT_RGB565.patch similarity index 100% rename from 0833-media-ici-Change-value-of-ICI_FORMAT_RGB565.patch rename to 0831-media-ici-Change-value-of-ICI_FORMAT_RGB565.patch diff --git a/0834-media-intel-ipu4-VIRT-Fix-PSYS-2-PG-operati.patch b/0832-media-intel-ipu4-VIRT-Fix-PSYS-2-PG-operati.patch similarity index 100% rename from 0834-media-intel-ipu4-VIRT-Fix-PSYS-2-PG-operati.patch rename to 0832-media-intel-ipu4-VIRT-Fix-PSYS-2-PG-operati.patch diff --git a/0835-media-ici-Change-ici_isys_pixelformat-param.patch b/0833-media-ici-Change-ici_isys_pixelformat-param.patch similarity index 100% rename from 0835-media-ici-Change-ici_isys_pixelformat-param.patch rename to 0833-media-ici-Change-ici_isys_pixelformat-param.patch diff --git a/0836-media-intel-ipu4-ICI-Fix-putbuf-list-and-ge.patch b/0834-media-intel-ipu4-ICI-Fix-putbuf-list-and-ge.patch similarity index 100% rename from 0836-media-intel-ipu4-ICI-Fix-putbuf-list-and-ge.patch rename to 0834-media-intel-ipu4-ICI-Fix-putbuf-list-and-ge.patch diff --git a/0837-media-ipu4-add-virtio-depends-for-ipu-virti.patch b/0835-media-ipu4-add-virtio-depends-for-ipu-virti.patch similarity index 100% rename from 0837-media-ipu4-add-virtio-depends-for-ipu-virti.patch rename to 0835-media-ipu4-add-virtio-depends-for-ipu-virti.patch diff --git a/0838-media-intel-ipu4-VIRT-Support-for-IPU-ACRN-.patch b/0836-media-intel-ipu4-VIRT-Support-for-IPU-ACRN-.patch similarity index 100% rename from 0838-media-intel-ipu4-VIRT-Support-for-IPU-ACRN-.patch rename to 0836-media-intel-ipu4-VIRT-Support-for-IPU-ACRN-.patch diff --git a/0839-drm-i915-gvt-fix-kernel-panic-when-fail-to-.patch b/0837-drm-i915-gvt-fix-kernel-panic-when-fail-to-.patch similarity index 100% rename from 0839-drm-i915-gvt-fix-kernel-panic-when-fail-to-.patch rename to 0837-drm-i915-gvt-fix-kernel-panic-when-fail-to-.patch diff --git a/0840-vhm-fix-audio-backend-module-handle-ioreq-i.patch b/0838-vhm-fix-audio-backend-module-handle-ioreq-i.patch similarity index 100% rename from 0840-vhm-fix-audio-backend-module-handle-ioreq-i.patch rename to 0838-vhm-fix-audio-backend-module-handle-ioreq-i.patch diff --git a/0841-drm-i915-gvt-force-to-active-the-high-perfo.patch b/0839-drm-i915-gvt-force-to-active-the-high-perfo.patch similarity index 100% rename from 0841-drm-i915-gvt-force-to-active-the-high-perfo.patch rename to 0839-drm-i915-gvt-force-to-active-the-high-perfo.patch diff --git a/0842-igb_avb-back-port-an-upstream-patch-and-add.patch b/0840-igb_avb-back-port-an-upstream-patch-and-add.patch similarity index 100% rename from 0842-igb_avb-back-port-an-upstream-patch-and-add.patch rename to 0840-igb_avb-back-port-an-upstream-patch-and-add.patch diff --git a/0843-ASoC-Intel-boards-Update-aliases-for-TDF-ma.patch b/0841-ASoC-Intel-boards-Update-aliases-for-TDF-ma.patch similarity index 100% rename from 0843-ASoC-Intel-boards-Update-aliases-for-TDF-ma.patch rename to 0841-ASoC-Intel-boards-Update-aliases-for-TDF-ma.patch diff --git a/0844-drm-i915-Not-wait-for-fuse-registers-in-gue.patch b/0842-drm-i915-Not-wait-for-fuse-registers-in-gue.patch similarity index 100% rename from 0844-drm-i915-Not-wait-for-fuse-registers-in-gue.patch rename to 0842-drm-i915-Not-wait-for-fuse-registers-in-gue.patch diff --git a/0845-media-i2c-ti964-ICI-Enabling-TI964-deser-an.patch b/0843-media-i2c-ti964-ICI-Enabling-TI964-deser-an.patch similarity index 100% rename from 0845-media-i2c-ti964-ICI-Enabling-TI964-deser-an.patch rename to 0843-media-i2c-ti964-ICI-Enabling-TI964-deser-an.patch diff --git a/0846-media-ici-Change-total-BE_STREAMS-and-MAX_S.patch b/0844-media-ici-Change-total-BE_STREAMS-and-MAX_S.patch similarity index 100% rename from 0846-media-ici-Change-total-BE_STREAMS-and-MAX_S.patch rename to 0844-media-ici-Change-total-BE_STREAMS-and-MAX_S.patch diff --git a/0847-media-i2c-crlmodule-lite-Remove-unused-vari.patch b/0845-media-i2c-crlmodule-lite-Remove-unused-vari.patch similarity index 100% rename from 0847-media-i2c-crlmodule-lite-Remove-unused-vari.patch rename to 0845-media-i2c-crlmodule-lite-Remove-unused-vari.patch diff --git a/0848-media-intel-ipu4-VIRT-Release-ISYS-buffer-d.patch b/0846-media-intel-ipu4-VIRT-Release-ISYS-buffer-d.patch similarity index 100% rename from 0848-media-intel-ipu4-VIRT-Release-ISYS-buffer-d.patch rename to 0846-media-intel-ipu4-VIRT-Release-ISYS-buffer-d.patch diff --git a/0849-media-intel-ipu4-ICI-get-virtual-I2C-ID-dyn.patch b/0847-media-intel-ipu4-ICI-get-virtual-I2C-ID-dyn.patch similarity index 100% rename from 0849-media-intel-ipu4-ICI-get-virtual-I2C-ID-dyn.patch rename to 0847-media-intel-ipu4-ICI-get-virtual-I2C-ID-dyn.patch diff --git a/0850-media-intel-ipu4-ICI-Fix-cvbs-image-quality.patch b/0848-media-intel-ipu4-ICI-Fix-cvbs-image-quality.patch similarity index 100% rename from 0850-media-intel-ipu4-ICI-Fix-cvbs-image-quality.patch rename to 0848-media-intel-ipu4-ICI-Fix-cvbs-image-quality.patch diff --git a/0851-media-intel-ipu4-ICI-Fix-sometimes-FW-faile.patch b/0849-media-intel-ipu4-ICI-Fix-sometimes-FW-faile.patch similarity index 100% rename from 0851-media-intel-ipu4-ICI-Fix-sometimes-FW-faile.patch rename to 0849-media-intel-ipu4-ICI-Fix-sometimes-FW-faile.patch diff --git a/0852-media-intel-ipu4-VIRT-Fix-ipu_psys_getbuf-f.patch b/0850-media-intel-ipu4-VIRT-Fix-ipu_psys_getbuf-f.patch similarity index 100% rename from 0852-media-intel-ipu4-VIRT-Fix-ipu_psys_getbuf-f.patch rename to 0850-media-intel-ipu4-VIRT-Fix-ipu_psys_getbuf-f.patch diff --git a/0853-media-i2c-pci-Reduce-log-level.patch b/0851-media-i2c-pci-Reduce-log-level.patch similarity index 100% rename from 0853-media-i2c-pci-Reduce-log-level.patch rename to 0851-media-i2c-pci-Reduce-log-level.patch diff --git a/0854-media-ici-Add-handler-to-clear-dma-mapped-b.patch b/0852-media-ici-Add-handler-to-clear-dma-mapped-b.patch similarity index 100% rename from 0854-media-ici-Add-handler-to-clear-dma-mapped-b.patch rename to 0852-media-ici-Add-handler-to-clear-dma-mapped-b.patch diff --git a/0855-media-intel-ipu4-ICI-MAX9286-and-AR0231AT-e.patch b/0853-media-intel-ipu4-ICI-MAX9286-and-AR0231AT-e.patch similarity index 100% rename from 0855-media-intel-ipu4-ICI-MAX9286-and-AR0231AT-e.patch rename to 0853-media-intel-ipu4-ICI-MAX9286-and-AR0231AT-e.patch diff --git a/0856-media-i2c-Fix-for-warnings-for-max9286_ici-.patch b/0854-media-i2c-Fix-for-warnings-for-max9286_ici-.patch similarity index 100% rename from 0856-media-i2c-Fix-for-warnings-for-max9286_ici-.patch rename to 0854-media-i2c-Fix-for-warnings-for-max9286_ici-.patch diff --git a/0857-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch b/0855-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch similarity index 100% rename from 0857-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch rename to 0855-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch diff --git a/0858-media-intel-ipu4-ICI-Workaround-to-force-co.patch b/0856-media-intel-ipu4-ICI-Workaround-to-force-co.patch similarity index 100% rename from 0858-media-intel-ipu4-ICI-Workaround-to-force-co.patch rename to 0856-media-intel-ipu4-ICI-Workaround-to-force-co.patch diff --git a/0859-Revert-igb_avb-back-port-an-upstream-patch-.patch b/0857-Revert-igb_avb-back-port-an-upstream-patch-.patch similarity index 100% rename from 0859-Revert-igb_avb-back-port-an-upstream-patch-.patch rename to 0857-Revert-igb_avb-back-port-an-upstream-patch-.patch diff --git a/0860-drm-i915-gvt-allocate-memory-for-vreg-mmio-.patch b/0858-drm-i915-gvt-allocate-memory-for-vreg-mmio-.patch similarity index 100% rename from 0860-drm-i915-gvt-allocate-memory-for-vreg-mmio-.patch rename to 0858-drm-i915-gvt-allocate-memory-for-vreg-mmio-.patch diff --git a/0861-Security-improvement-for-depressing-compile.patch b/0859-Security-improvement-for-depressing-compile.patch similarity index 100% rename from 0861-Security-improvement-for-depressing-compile.patch rename to 0859-Security-improvement-for-depressing-compile.patch diff --git a/0862-platform-x86-Change-struct-fields-to-16-bit.patch b/0860-platform-x86-Change-struct-fields-to-16-bit.patch similarity index 100% rename from 0862-platform-x86-Change-struct-fields-to-16-bit.patch rename to 0860-platform-x86-Change-struct-fields-to-16-bit.patch diff --git a/0863-drm-i915-gvt-Get-Port-ID-from-the-encoder-o.patch b/0861-drm-i915-gvt-Get-Port-ID-from-the-encoder-o.patch similarity index 100% rename from 0863-drm-i915-gvt-Get-Port-ID-from-the-encoder-o.patch rename to 0861-drm-i915-gvt-Get-Port-ID-from-the-encoder-o.patch diff --git a/0864-drivers-hyper_dmabuf-Reuse-the-exported-dma.patch b/0862-drivers-hyper_dmabuf-Reuse-the-exported-dma.patch similarity index 100% rename from 0864-drivers-hyper_dmabuf-Reuse-the-exported-dma.patch rename to 0862-drivers-hyper_dmabuf-Reuse-the-exported-dma.patch diff --git a/0865-drivers-hyper_dmabuf-Remove-the-imported-dm.patch b/0863-drivers-hyper_dmabuf-Remove-the-imported-dm.patch similarity index 100% rename from 0865-drivers-hyper_dmabuf-Remove-the-imported-dm.patch rename to 0863-drivers-hyper_dmabuf-Remove-the-imported-dm.patch diff --git a/0866-drivers-hyper_dmabuf-Remove-from-imported_l.patch b/0864-drivers-hyper_dmabuf-Remove-from-imported_l.patch similarity index 100% rename from 0866-drivers-hyper_dmabuf-Remove-from-imported_l.patch rename to 0864-drivers-hyper_dmabuf-Remove-from-imported_l.patch diff --git a/0867-Security-Fix-copy-wrong-size-of-keystore-cl.patch b/0865-Security-Fix-copy-wrong-size-of-keystore-cl.patch similarity index 100% rename from 0867-Security-Fix-copy-wrong-size-of-keystore-cl.patch rename to 0865-Security-Fix-copy-wrong-size-of-keystore-cl.patch diff --git a/0868-Bug-Fix-to-fix-incorrect-osid-value.patch b/0866-Bug-Fix-to-fix-incorrect-osid-value.patch similarity index 100% rename from 0868-Bug-Fix-to-fix-incorrect-osid-value.patch rename to 0866-Bug-Fix-to-fix-incorrect-osid-value.patch diff --git a/0869-media-intel-ipu4-VIRT-Avoid-double-close-of.patch b/0867-media-intel-ipu4-VIRT-Avoid-double-close-of.patch similarity index 100% rename from 0869-media-intel-ipu4-VIRT-Avoid-double-close-of.patch rename to 0867-media-intel-ipu4-VIRT-Avoid-double-close-of.patch diff --git a/0870-media-intel-ipu4-VIRT-Increase-the-POLL_WAI.patch b/0868-media-intel-ipu4-VIRT-Increase-the-POLL_WAI.patch similarity index 100% rename from 0870-media-intel-ipu4-VIRT-Increase-the-POLL_WAI.patch rename to 0868-media-intel-ipu4-VIRT-Increase-the-POLL_WAI.patch diff --git a/0871-intel-ipu4-ici-Move-empty-list-check-into-s.patch b/0869-intel-ipu4-ici-Move-empty-list-check-into-s.patch similarity index 100% rename from 0871-intel-ipu4-ici-Move-empty-list-check-into-s.patch rename to 0869-intel-ipu4-ici-Move-empty-list-check-into-s.patch diff --git a/0872-drm-Add-per-plane-pixel-blend-mode-property.patch b/0870-drm-Add-per-plane-pixel-blend-mode-property.patch similarity index 100% rename from 0872-drm-Add-per-plane-pixel-blend-mode-property.patch rename to 0870-drm-Add-per-plane-pixel-blend-mode-property.patch diff --git a/0873-drm-i915-Add-plane-alpha-blending-support-v.patch b/0871-drm-i915-Add-plane-alpha-blending-support-v.patch similarity index 100% rename from 0873-drm-i915-Add-plane-alpha-blending-support-v.patch rename to 0871-drm-i915-Add-plane-alpha-blending-support-v.patch diff --git a/0874-igb_avb-Fix-invalid-memory-access-after-S3-.patch b/0872-igb_avb-Fix-invalid-memory-access-after-S3-.patch similarity index 100% rename from 0874-igb_avb-Fix-invalid-memory-access-after-S3-.patch rename to 0872-igb_avb-Fix-invalid-memory-access-after-S3-.patch diff --git a/0875-drm-i915-Introduce-initial-mode-setting.patch b/0873-drm-i915-Introduce-initial-mode-setting.patch similarity index 100% rename from 0875-drm-i915-Introduce-initial-mode-setting.patch rename to 0873-drm-i915-Introduce-initial-mode-setting.patch diff --git a/0876-keystore-fix-memory-leaks.patch b/0874-keystore-fix-memory-leaks.patch similarity index 100% rename from 0876-keystore-fix-memory-leaks.patch rename to 0874-keystore-fix-memory-leaks.patch diff --git a/0877-keystore-fix-missing-break.patch b/0875-keystore-fix-missing-break.patch similarity index 100% rename from 0877-keystore-fix-missing-break.patch rename to 0875-keystore-fix-missing-break.patch diff --git a/0878-keystore-add-application-authentication-fea.patch b/0876-keystore-add-application-authentication-fea.patch similarity index 100% rename from 0878-keystore-add-application-authentication-fea.patch rename to 0876-keystore-add-application-authentication-fea.patch diff --git a/0879-Revert-drm-i915-Add-plane-alpha-blending-su.patch b/0877-Revert-drm-i915-Add-plane-alpha-blending-su.patch similarity index 100% rename from 0879-Revert-drm-i915-Add-plane-alpha-blending-su.patch rename to 0877-Revert-drm-i915-Add-plane-alpha-blending-su.patch diff --git a/0880-Revert-drm-Add-per-plane-pixel-blend-mode-p.patch b/0878-Revert-drm-Add-per-plane-pixel-blend-mode-p.patch similarity index 100% rename from 0880-Revert-drm-Add-per-plane-pixel-blend-mode-p.patch rename to 0878-Revert-drm-Add-per-plane-pixel-blend-mode-p.patch diff --git a/0881-ASoC-Intel-Skylake-Add-FE-and-BE-DAIs-for-U.patch b/0879-ASoC-Intel-Skylake-Add-FE-and-BE-DAIs-for-U.patch similarity index 100% rename from 0881-ASoC-Intel-Skylake-Add-FE-and-BE-DAIs-for-U.patch rename to 0879-ASoC-Intel-Skylake-Add-FE-and-BE-DAIs-for-U.patch diff --git a/0882-Revert-ASoC-Intel-board-Add-support-for-FE-.patch b/0880-Revert-ASoC-Intel-board-Add-support-for-FE-.patch similarity index 100% rename from 0882-Revert-ASoC-Intel-board-Add-support-for-FE-.patch rename to 0880-Revert-ASoC-Intel-board-Add-support-for-FE-.patch diff --git a/0883-ASoC-Intel-board-Update-BXT-P-ULL-machine-d.patch b/0881-ASoC-Intel-board-Update-BXT-P-ULL-machine-d.patch similarity index 100% rename from 0883-ASoC-Intel-board-Update-BXT-P-ULL-machine-d.patch rename to 0881-ASoC-Intel-board-Update-BXT-P-ULL-machine-d.patch diff --git a/0884-media-intel-ipu4-ICI-start-stream-with-corr.patch b/0882-media-intel-ipu4-ICI-start-stream-with-corr.patch similarity index 100% rename from 0884-media-intel-ipu4-ICI-start-stream-with-corr.patch rename to 0882-media-intel-ipu4-ICI-start-stream-with-corr.patch diff --git a/0885-media-intel-ipu4-ICI-Reorder-mutex-lock-of-.patch b/0883-media-intel-ipu4-ICI-Reorder-mutex-lock-of-.patch similarity index 100% rename from 0885-media-intel-ipu4-ICI-Reorder-mutex-lock-of-.patch rename to 0883-media-intel-ipu4-ICI-Reorder-mutex-lock-of-.patch diff --git a/0886-ASoC-Skl-Virt-Fix-incorrect-virt-msg-respon.patch b/0884-ASoC-Skl-Virt-Fix-incorrect-virt-msg-respon.patch similarity index 100% rename from 0886-ASoC-Skl-Virt-Fix-incorrect-virt-msg-respon.patch rename to 0884-ASoC-Skl-Virt-Fix-incorrect-virt-msg-respon.patch diff --git a/0887-ASoC-Skl-Virt-Add-locks-to-virtqueue-relate.patch b/0885-ASoC-Skl-Virt-Add-locks-to-virtqueue-relate.patch similarity index 100% rename from 0887-ASoC-Skl-Virt-Add-locks-to-virtqueue-relate.patch rename to 0885-ASoC-Skl-Virt-Add-locks-to-virtqueue-relate.patch diff --git a/0888-ASoC-Skl-Virt-Add-locks-to-substreams-list.patch b/0886-ASoC-Skl-Virt-Add-locks-to-substreams-list.patch similarity index 100% rename from 0888-ASoC-Skl-Virt-Add-locks-to-substreams-list.patch rename to 0886-ASoC-Skl-Virt-Add-locks-to-substreams-list.patch diff --git a/0889-ASoC-Skl-Virt-Handle-timed-out-message-repl.patch b/0887-ASoC-Skl-Virt-Handle-timed-out-message-repl.patch similarity index 100% rename from 0889-ASoC-Skl-Virt-Handle-timed-out-message-repl.patch rename to 0887-ASoC-Skl-Virt-Handle-timed-out-message-repl.patch diff --git a/0890-trusty-Add-trusty-driver.patch b/0888-trusty-Add-trusty-driver.patch similarity index 100% rename from 0890-trusty-Add-trusty-driver.patch rename to 0888-trusty-Add-trusty-driver.patch diff --git a/0891-trusty-Add-notifier-before-and-after-every-.patch b/0889-trusty-Add-notifier-before-and-after-every-.patch similarity index 100% rename from 0891-trusty-Add-notifier-before-and-after-every-.patch rename to 0889-trusty-Add-notifier-before-and-after-every-.patch diff --git a/0892-trusty-Get-version-string-from-trusty.patch b/0890-trusty-Get-version-string-from-trusty.patch similarity index 100% rename from 0892-trusty-Get-version-string-from-trusty.patch rename to 0890-trusty-Get-version-string-from-trusty.patch diff --git a/0893-trusty-Add-interrupt-support.patch b/0891-trusty-Add-interrupt-support.patch similarity index 100% rename from 0893-trusty-Add-interrupt-support.patch rename to 0891-trusty-Add-interrupt-support.patch diff --git a/0894-trusty-Add-fiq-support.patch b/0892-trusty-Add-fiq-support.patch similarity index 100% rename from 0894-trusty-Add-fiq-support.patch rename to 0892-trusty-Add-fiq-support.patch diff --git a/0895-trusty-arm64-fiq-support.patch b/0893-trusty-arm64-fiq-support.patch similarity index 100% rename from 0895-trusty-arm64-fiq-support.patch rename to 0893-trusty-arm64-fiq-support.patch diff --git a/0896-trusty-fiq-arm64-Allow-multiple-fiq-handler.patch b/0894-trusty-fiq-arm64-Allow-multiple-fiq-handler.patch similarity index 100% rename from 0896-trusty-fiq-arm64-Allow-multiple-fiq-handler.patch rename to 0894-trusty-fiq-arm64-Allow-multiple-fiq-handler.patch diff --git a/0897-trusty-Add-trusty-logging-driver.patch b/0895-trusty-Add-trusty-logging-driver.patch similarity index 100% rename from 0897-trusty-Add-trusty-logging-driver.patch rename to 0895-trusty-Add-trusty-logging-driver.patch diff --git a/0898-trusty-add-couple-non-secure-memory-related.patch b/0896-trusty-add-couple-non-secure-memory-related.patch similarity index 100% rename from 0898-trusty-add-couple-non-secure-memory-related.patch rename to 0896-trusty-add-couple-non-secure-memory-related.patch diff --git a/0899-trusty-add-trusty-virtio-driver.patch b/0897-trusty-add-trusty-virtio-driver.patch similarity index 100% rename from 0899-trusty-add-trusty-virtio-driver.patch rename to 0897-trusty-add-trusty-virtio-driver.patch diff --git a/0900-trusty-add-trusty-ipc-driver.patch b/0898-trusty-add-trusty-ipc-driver.patch similarity index 100% rename from 0900-trusty-add-trusty-ipc-driver.patch rename to 0898-trusty-add-trusty-ipc-driver.patch diff --git a/0901-trusty-Select-api-version.patch b/0899-trusty-Select-api-version.patch similarity index 100% rename from 0901-trusty-Select-api-version.patch rename to 0899-trusty-Select-api-version.patch diff --git a/0902-trusty-Handle-fiqs-without-calling-notifier.patch b/0900-trusty-Handle-fiqs-without-calling-notifier.patch similarity index 100% rename from 0902-trusty-Handle-fiqs-without-calling-notifier.patch rename to 0900-trusty-Handle-fiqs-without-calling-notifier.patch diff --git a/0903-trusty-Add-smp-support.patch b/0901-trusty-Add-smp-support.patch similarity index 100% rename from 0903-trusty-Add-smp-support.patch rename to 0901-trusty-Add-smp-support.patch diff --git a/0904-trusty-irq-Add-support-for-secure-interrupt.patch b/0902-trusty-irq-Add-support-for-secure-interrupt.patch similarity index 100% rename from 0904-trusty-irq-Add-support-for-secure-interrupt.patch rename to 0902-trusty-irq-Add-support-for-secure-interrupt.patch diff --git a/0905-Modify-the-static-analysis-errors-for-googl.patch b/0903-Modify-the-static-analysis-errors-for-googl.patch similarity index 100% rename from 0905-Modify-the-static-analysis-errors-for-googl.patch rename to 0903-Modify-the-static-analysis-errors-for-googl.patch diff --git a/0906-Modify-Google-s-trusty-drivers-so-as-to-sup.patch b/0904-Modify-Google-s-trusty-drivers-so-as-to-sup.patch similarity index 100% rename from 0906-Modify-Google-s-trusty-drivers-so-as-to-sup.patch rename to 0904-Modify-Google-s-trusty-drivers-so-as-to-sup.patch diff --git a/0907-Fix-the-issue-for-tipc-test-case-closer1.patch b/0905-Fix-the-issue-for-tipc-test-case-closer1.patch similarity index 100% rename from 0907-Fix-the-issue-for-tipc-test-case-closer1.patch rename to 0905-Fix-the-issue-for-tipc-test-case-closer1.patch diff --git a/0908-trusty-implement-trusty-OS-timer-proxy-for-.patch b/0906-trusty-implement-trusty-OS-timer-proxy-for-.patch similarity index 100% rename from 0908-trusty-implement-trusty-OS-timer-proxy-for-.patch rename to 0906-trusty-implement-trusty-OS-timer-proxy-for-.patch diff --git a/0909-Replace-CPU_STARTING-CPU_DYING-with-CPU_UP_.patch b/0907-Replace-CPU_STARTING-CPU_DYING-with-CPU_UP_.patch similarity index 100% rename from 0909-Replace-CPU_STARTING-CPU_DYING-with-CPU_UP_.patch rename to 0907-Replace-CPU_STARTING-CPU_DYING-with-CPU_UP_.patch diff --git a/0910-trusty-fix-incompatible-pointer-types.patch b/0908-trusty-fix-incompatible-pointer-types.patch similarity index 100% rename from 0910-trusty-fix-incompatible-pointer-types.patch rename to 0908-trusty-fix-incompatible-pointer-types.patch diff --git a/0911-trusty-move-async-works-off-system-workqueu.patch b/0909-trusty-move-async-works-off-system-workqueu.patch similarity index 100% rename from 0911-trusty-move-async-works-off-system-workqueu.patch rename to 0909-trusty-move-async-works-off-system-workqueu.patch diff --git a/0912-trusty-print-out-Built-in-kernel-directly.patch b/0910-trusty-print-out-Built-in-kernel-directly.patch similarity index 100% rename from 0912-trusty-print-out-Built-in-kernel-directly.patch rename to 0910-trusty-print-out-Built-in-kernel-directly.patch diff --git a/0913-trusty-Popup-warning-when-LK-timer-interrup.patch b/0911-trusty-Popup-warning-when-LK-timer-interrup.patch similarity index 100% rename from 0913-trusty-Popup-warning-when-LK-timer-interrup.patch rename to 0911-trusty-Popup-warning-when-LK-timer-interrup.patch diff --git a/0914-trusty-log-Add-vmm-panic-notifier-for-vmm-d.patch b/0912-trusty-log-Add-vmm-panic-notifier-for-vmm-d.patch similarity index 100% rename from 0914-trusty-log-Add-vmm-panic-notifier-for-vmm-d.patch rename to 0912-trusty-log-Add-vmm-panic-notifier-for-vmm-d.patch diff --git a/0915-trusty-fix-rcu_preempt-soft-lockup-crash-is.patch b/0913-trusty-fix-rcu_preempt-soft-lockup-crash-is.patch similarity index 100% rename from 0915-trusty-fix-rcu_preempt-soft-lockup-crash-is.patch rename to 0913-trusty-fix-rcu_preempt-soft-lockup-crash-is.patch diff --git a/0916-trusty-Add-VMM-PANIC-dump-data.patch b/0914-trusty-Add-VMM-PANIC-dump-data.patch similarity index 100% rename from 0916-trusty-Add-VMM-PANIC-dump-data.patch rename to 0914-trusty-Add-VMM-PANIC-dump-data.patch diff --git a/0917-Modify-Trusty-drivers-so-as-to-compatible-w.patch b/0915-Modify-Trusty-drivers-so-as-to-compatible-w.patch similarity index 100% rename from 0917-Modify-Trusty-drivers-so-as-to-compatible-w.patch rename to 0915-Modify-Trusty-drivers-so-as-to-compatible-w.patch diff --git a/0918-Limit-to-output-trusty-lk-log-on-debug-vers.patch b/0916-Limit-to-output-trusty-lk-log-on-debug-vers.patch similarity index 100% rename from 0918-Limit-to-output-trusty-lk-log-on-debug-vers.patch rename to 0916-Limit-to-output-trusty-lk-log-on-debug-vers.patch diff --git a/0919-trusty-ipc-tipc_msg_hdr-structure-support-l.patch b/0917-trusty-ipc-tipc_msg_hdr-structure-support-l.patch similarity index 100% rename from 0919-trusty-ipc-tipc_msg_hdr-structure-support-l.patch rename to 0917-trusty-ipc-tipc_msg_hdr-structure-support-l.patch diff --git a/0920-trusty-ipc-change-DEFAULT_MSG_BUF_SIZE-to-6.patch b/0918-trusty-ipc-change-DEFAULT_MSG_BUF_SIZE-to-6.patch similarity index 100% rename from 0920-trusty-ipc-change-DEFAULT_MSG_BUF_SIZE-to-6.patch rename to 0918-trusty-ipc-change-DEFAULT_MSG_BUF_SIZE-to-6.patch diff --git a/0921-check-CPUID-while-probe-trusty-drivers.patch b/0919-check-CPUID-while-probe-trusty-drivers.patch similarity index 100% rename from 0921-check-CPUID-while-probe-trusty-drivers.patch rename to 0919-check-CPUID-while-probe-trusty-drivers.patch diff --git a/0922-Fix-the-compile-error-when-update-4.12.patch b/0920-Fix-the-compile-error-when-update-4.12.patch similarity index 100% rename from 0922-Fix-the-compile-error-when-update-4.12.patch rename to 0920-Fix-the-compile-error-when-update-4.12.patch diff --git a/0923-trusty-Fix-the-warnings-for-eywa-building.patch b/0921-trusty-Fix-the-warnings-for-eywa-building.patch similarity index 100% rename from 0923-trusty-Fix-the-warnings-for-eywa-building.patch rename to 0921-trusty-Fix-the-warnings-for-eywa-building.patch diff --git a/0924-trusty-Enable-dynamic-timer.patch b/0922-trusty-Enable-dynamic-timer.patch similarity index 100% rename from 0924-trusty-Enable-dynamic-timer.patch rename to 0922-trusty-Enable-dynamic-timer.patch diff --git a/0925-check-vmm-signature-for-vmm-dump.patch b/0923-check-vmm-signature-for-vmm-dump.patch similarity index 100% rename from 0925-check-vmm-signature-for-vmm-dump.patch rename to 0923-check-vmm-signature-for-vmm-dump.patch diff --git a/0926-Revert-BXT-DYNAMIC-TIMER-Enable-dynamic-tim.patch b/0924-Revert-BXT-DYNAMIC-TIMER-Enable-dynamic-tim.patch similarity index 100% rename from 0926-Revert-BXT-DYNAMIC-TIMER-Enable-dynamic-tim.patch rename to 0924-Revert-BXT-DYNAMIC-TIMER-Enable-dynamic-tim.patch diff --git a/0927-Revert-trusty-implement-trusty-OS-timer-pro.patch b/0925-Revert-trusty-implement-trusty-OS-timer-pro.patch similarity index 100% rename from 0927-Revert-trusty-implement-trusty-OS-timer-pro.patch rename to 0925-Revert-trusty-implement-trusty-OS-timer-pro.patch diff --git a/0928-trusty-add-support-for-parameterized-NOP-op.patch b/0926-trusty-add-support-for-parameterized-NOP-op.patch similarity index 100% rename from 0928-trusty-add-support-for-parameterized-NOP-op.patch rename to 0926-trusty-add-support-for-parameterized-NOP-op.patch diff --git a/0929-trusty-switch-to-use-version-3-of-TRUSTY_AP.patch b/0927-trusty-switch-to-use-version-3-of-TRUSTY_AP.patch similarity index 100% rename from 0929-trusty-switch-to-use-version-3-of-TRUSTY_AP.patch rename to 0927-trusty-switch-to-use-version-3-of-TRUSTY_AP.patch diff --git a/0930-trusty-add-support-for-SM-Wall-object.patch b/0928-trusty-add-support-for-SM-Wall-object.patch similarity index 100% rename from 0930-trusty-add-support-for-SM-Wall-object.patch rename to 0928-trusty-add-support-for-SM-Wall-object.patch diff --git a/0931-trusty-add-support-for-trusty-backup-timer.patch b/0929-trusty-add-support-for-trusty-backup-timer.patch similarity index 100% rename from 0931-trusty-add-support-for-trusty-backup-timer.patch rename to 0929-trusty-add-support-for-trusty-backup-timer.patch diff --git a/0932-trusty-kernel-driver-code-refine.patch b/0930-trusty-kernel-driver-code-refine.patch similarity index 100% rename from 0932-trusty-kernel-driver-code-refine.patch rename to 0930-trusty-kernel-driver-code-refine.patch diff --git a/0933-Change-Trusty-Kconfig-to-build-for-X86-Arch.patch b/0931-Change-Trusty-Kconfig-to-build-for-X86-Arch.patch similarity index 100% rename from 0933-Change-Trusty-Kconfig-to-build-for-X86-Arch.patch rename to 0931-Change-Trusty-Kconfig-to-build-for-X86-Arch.patch diff --git a/0934-trusty-Add-null-check-pointer-before-defere.patch b/0932-trusty-Add-null-check-pointer-before-defere.patch similarity index 100% rename from 0934-trusty-Add-null-check-pointer-before-defere.patch rename to 0932-trusty-Add-null-check-pointer-before-defere.patch diff --git a/0935-trusty-Check-if-eVmm-is-available-before-in.patch b/0933-trusty-Check-if-eVmm-is-available-before-in.patch similarity index 100% rename from 0935-trusty-Check-if-eVmm-is-available-before-in.patch rename to 0933-trusty-Check-if-eVmm-is-available-before-in.patch diff --git a/0936-trusty-Update-Trusty-timer-solution.patch b/0934-trusty-Update-Trusty-timer-solution.patch similarity index 100% rename from 0936-trusty-Update-Trusty-timer-solution.patch rename to 0934-trusty-Update-Trusty-timer-solution.patch diff --git a/0937-trusty-detect-vmm-when-load-trusty-driver.patch b/0935-trusty-detect-vmm-when-load-trusty-driver.patch similarity index 100% rename from 0937-trusty-detect-vmm-when-load-trusty-driver.patch rename to 0935-trusty-detect-vmm-when-load-trusty-driver.patch diff --git a/0938-Remove-unused-label-to-depress-compile-warn.patch b/0936-Remove-unused-label-to-depress-compile-warn.patch similarity index 100% rename from 0938-Remove-unused-label-to-depress-compile-warn.patch rename to 0936-Remove-unused-label-to-depress-compile-warn.patch diff --git a/0939-trusty-Update-dependency-of-trusty-module.patch b/0937-trusty-Update-dependency-of-trusty-module.patch similarity index 100% rename from 0939-trusty-Update-dependency-of-trusty-module.patch rename to 0937-trusty-Update-dependency-of-trusty-module.patch diff --git a/0940-trusty-Rename-CWP-with-ACRN.patch b/0938-trusty-Rename-CWP-with-ACRN.patch similarity index 100% rename from 0940-trusty-Rename-CWP-with-ACRN.patch rename to 0938-trusty-Rename-CWP-with-ACRN.patch diff --git a/0941-trusty-add-RAX-into-clobber-list-of-inline-.patch b/0939-trusty-add-RAX-into-clobber-list-of-inline-.patch similarity index 100% rename from 0941-trusty-add-RAX-into-clobber-list-of-inline-.patch rename to 0939-trusty-add-RAX-into-clobber-list-of-inline-.patch diff --git a/0942-trusty-Update-macro-SMC_FC_GET_WALL_SIZE-fr.patch b/0940-trusty-Update-macro-SMC_FC_GET_WALL_SIZE-fr.patch similarity index 100% rename from 0942-trusty-Update-macro-SMC_FC_GET_WALL_SIZE-fr.patch rename to 0940-trusty-Update-macro-SMC_FC_GET_WALL_SIZE-fr.patch diff --git a/0943-unify-trusty-driver.patch b/0941-unify-trusty-driver.patch similarity index 100% rename from 0943-unify-trusty-driver.patch rename to 0941-unify-trusty-driver.patch diff --git a/0944-Revert-trusty-ipc-change-DEFAULT_MSG_BUF_SI.patch b/0942-Revert-trusty-ipc-change-DEFAULT_MSG_BUF_SI.patch similarity index 100% rename from 0944-Revert-trusty-ipc-change-DEFAULT_MSG_BUF_SI.patch rename to 0942-Revert-trusty-ipc-change-DEFAULT_MSG_BUF_SI.patch diff --git a/0945-refine-work-queue-in-trusty-driver.patch b/0943-refine-work-queue-in-trusty-driver.patch similarity index 100% rename from 0945-refine-work-queue-in-trusty-driver.patch rename to 0943-refine-work-queue-in-trusty-driver.patch diff --git a/0946-register-suspend-callback.patch b/0944-register-suspend-callback.patch similarity index 100% rename from 0946-register-suspend-callback.patch rename to 0944-register-suspend-callback.patch diff --git a/0947-Fix-compile-warning-from-ISO90-and-output-f.patch b/0945-Fix-compile-warning-from-ISO90-and-output-f.patch similarity index 100% rename from 0947-Fix-compile-warning-from-ISO90-and-output-f.patch rename to 0945-Fix-compile-warning-from-ISO90-and-output-f.patch diff --git a/0948-check-return-value-of-hypercall.patch b/0946-check-return-value-of-hypercall.patch similarity index 100% rename from 0948-check-return-value-of-hypercall.patch rename to 0946-check-return-value-of-hypercall.patch diff --git a/0949-Fix-compilation-errors-when-rebase-to-v4.19.patch b/0947-Fix-compilation-errors-when-rebase-to-v4.19.patch similarity index 100% rename from 0949-Fix-compilation-errors-when-rebase-to-v4.19.patch rename to 0947-Fix-compilation-errors-when-rebase-to-v4.19.patch diff --git a/0950-VHM-Add-one-hypercall-to-query-hardware-inf.patch b/0948-VHM-Add-one-hypercall-to-query-hardware-inf.patch similarity index 100% rename from 0950-VHM-Add-one-hypercall-to-query-hardware-inf.patch rename to 0948-VHM-Add-one-hypercall-to-query-hardware-inf.patch diff --git a/0951-HVLog-Refine-acrn_hvlog-to-remove-the-limit.patch b/0949-HVLog-Refine-acrn_hvlog-to-remove-the-limit.patch similarity index 100% rename from 0951-HVLog-Refine-acrn_hvlog-to-remove-the-limit.patch rename to 0949-HVLog-Refine-acrn_hvlog-to-remove-the-limit.patch diff --git a/0952-ACRNTrace-Refine-acrn-trace-module-to-remov.patch b/0950-ACRNTrace-Refine-acrn-trace-module-to-remov.patch similarity index 100% rename from 0952-ACRNTrace-Refine-acrn-trace-module-to-remov.patch rename to 0950-ACRNTrace-Refine-acrn-trace-module-to-remov.patch diff --git a/0953-kernel-Sync-the-common-header-file.patch b/0951-kernel-Sync-the-common-header-file.patch similarity index 100% rename from 0953-kernel-Sync-the-common-header-file.patch rename to 0951-kernel-Sync-the-common-header-file.patch diff --git a/0954-vhm-remove-the-flooding-log-from-vhm.patch b/0952-vhm-remove-the-flooding-log-from-vhm.patch similarity index 100% rename from 0954-vhm-remove-the-flooding-log-from-vhm.patch rename to 0952-vhm-remove-the-flooding-log-from-vhm.patch diff --git a/0955-media-intel-ipu4-VIRT-Increase-wait-time.patch b/0953-media-intel-ipu4-VIRT-Increase-wait-time.patch similarity index 100% rename from 0955-media-intel-ipu4-VIRT-Increase-wait-time.patch rename to 0953-media-intel-ipu4-VIRT-Increase-wait-time.patch diff --git a/0956-media-intel-ipu4-VIRT-Clean-up-SOS-states-a.patch b/0954-media-intel-ipu4-VIRT-Clean-up-SOS-states-a.patch similarity index 100% rename from 0956-media-intel-ipu4-VIRT-Clean-up-SOS-states-a.patch rename to 0954-media-intel-ipu4-VIRT-Clean-up-SOS-states-a.patch diff --git a/0957-media-intel-ipu4-fix-v4l2_g_ext_ctrls-param.patch b/0955-media-intel-ipu4-fix-v4l2_g_ext_ctrls-param.patch similarity index 100% rename from 0957-media-intel-ipu4-fix-v4l2_g_ext_ctrls-param.patch rename to 0955-media-intel-ipu4-fix-v4l2_g_ext_ctrls-param.patch diff --git a/0958-media-intel-ipu4p-css-scci_IPU4_master_2018.patch b/0956-media-intel-ipu4p-css-scci_IPU4_master_2018.patch similarity index 100% rename from 0958-media-intel-ipu4p-css-scci_IPU4_master_2018.patch rename to 0956-media-intel-ipu4p-css-scci_IPU4_master_2018.patch diff --git a/0978-media-intel-ipu4p-css-scci_IPU4_master_2018.patch b/0957-media-intel-ipu4p-css-scci_IPU4_master_2018.patch similarity index 77% rename from 0978-media-intel-ipu4p-css-scci_IPU4_master_2018.patch rename to 0957-media-intel-ipu4p-css-scci_IPU4_master_2018.patch index 580a8c9c..e573f24b 100644 --- a/0978-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +++ b/0957-media-intel-ipu4p-css-scci_IPU4_master_2018.patch @@ -1,12 +1,12 @@ -From d45663c11ffe99056f611840e745efb2f51b3945 Mon Sep 17 00:00:00 2001 +From 6c5544678126f86847b323ecade686ec51061289 Mon Sep 17 00:00:00 2001 From: Meng Wei -Date: Wed, 2 Jan 2019 11:16:13 +0800 -Subject: [PATCH 24/32] media: intel-ipu4p: css: scci_IPU4_master_20181222_1218 +Date: Mon, 3 Dec 2018 16:52:23 +0800 +Subject: [PATCH 05/32] media: intel-ipu4p: css: scci_IPU4_master_20181030_0713 FwRelease New firmware css release. -Change-Id: Ic696e4bcbeac223281c125cc78a3e7e125d60cef +Change-Id: I774f80ed1b5b285eaf563b2a73baa4b36e0d05f4 Tracked-On: PKT-1691 Signed-off-by: icg_intg Signed-off-by: Meng Wei @@ -18,45 +18,45 @@ Signed-off-by: Meng Wei 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h -index c1c9c0dbfb6d..408726c81714 100644 +index 1e49e2a161ce..dfe9d99421d7 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181217 -+#define IA_CSS_FW_PKG_RELEASE 0x20181222 +-#define IA_CSS_FW_PKG_RELEASE 0x20181029 ++#define IA_CSS_FW_PKG_RELEASE 0x20181030 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h -index c1c9c0dbfb6d..408726c81714 100644 +index 1e49e2a161ce..dfe9d99421d7 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181217 -+#define IA_CSS_FW_PKG_RELEASE 0x20181222 +-#define IA_CSS_FW_PKG_RELEASE 0x20181029 ++#define IA_CSS_FW_PKG_RELEASE 0x20181030 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h -index c1c9c0dbfb6d..408726c81714 100644 +index 1e49e2a161ce..dfe9d99421d7 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181217 -+#define IA_CSS_FW_PKG_RELEASE 0x20181222 +-#define IA_CSS_FW_PKG_RELEASE 0x20181029 ++#define IA_CSS_FW_PKG_RELEASE 0x20181030 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h -index c1c9c0dbfb6d..408726c81714 100644 +index 1e49e2a161ce..dfe9d99421d7 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181217 -+#define IA_CSS_FW_PKG_RELEASE 0x20181222 +-#define IA_CSS_FW_PKG_RELEASE 0x20181029 ++#define IA_CSS_FW_PKG_RELEASE 0x20181030 -- 2.17.1 diff --git a/0960-media-psys-Enable-new-FW-API-for-IPU-perfor.patch b/0958-media-psys-Enable-new-FW-API-for-IPU-perfor.patch similarity index 100% rename from 0960-media-psys-Enable-new-FW-API-for-IPU-perfor.patch rename to 0958-media-psys-Enable-new-FW-API-for-IPU-perfor.patch diff --git a/0959-media-intel-ipu4p-css-scci_IPU4_master_2018.patch b/0959-media-intel-ipu4p-css-scci_IPU4_master_2018.patch index e573f24b..e63b3195 100644 --- a/0959-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +++ b/0959-media-intel-ipu4p-css-scci_IPU4_master_2018.patch @@ -1,12 +1,12 @@ -From 6c5544678126f86847b323ecade686ec51061289 Mon Sep 17 00:00:00 2001 +From 06b1c3ad821bb829e227bd07dc11797181dea3c0 Mon Sep 17 00:00:00 2001 From: Meng Wei -Date: Mon, 3 Dec 2018 16:52:23 +0800 -Subject: [PATCH 05/32] media: intel-ipu4p: css: scci_IPU4_master_20181030_0713 +Date: Mon, 3 Dec 2018 16:52:34 +0800 +Subject: [PATCH 07/32] media: intel-ipu4p: css: scci_IPU4_master_20181105_1124 FwRelease New firmware css release. -Change-Id: I774f80ed1b5b285eaf563b2a73baa4b36e0d05f4 +Change-Id: I61b50d64613f6f9b7144ad717769e68f600c4d5f Tracked-On: PKT-1691 Signed-off-by: icg_intg Signed-off-by: Meng Wei @@ -18,45 +18,45 @@ Signed-off-by: Meng Wei 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h -index 1e49e2a161ce..dfe9d99421d7 100644 +index dfe9d99421d7..6e634e12c57d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181029 -+#define IA_CSS_FW_PKG_RELEASE 0x20181030 +-#define IA_CSS_FW_PKG_RELEASE 0x20181030 ++#define IA_CSS_FW_PKG_RELEASE 0x20181105 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h -index 1e49e2a161ce..dfe9d99421d7 100644 +index dfe9d99421d7..6e634e12c57d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181029 -+#define IA_CSS_FW_PKG_RELEASE 0x20181030 +-#define IA_CSS_FW_PKG_RELEASE 0x20181030 ++#define IA_CSS_FW_PKG_RELEASE 0x20181105 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h -index 1e49e2a161ce..dfe9d99421d7 100644 +index dfe9d99421d7..6e634e12c57d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181029 -+#define IA_CSS_FW_PKG_RELEASE 0x20181030 +-#define IA_CSS_FW_PKG_RELEASE 0x20181030 ++#define IA_CSS_FW_PKG_RELEASE 0x20181105 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h -index 1e49e2a161ce..dfe9d99421d7 100644 +index dfe9d99421d7..6e634e12c57d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181029 -+#define IA_CSS_FW_PKG_RELEASE 0x20181030 +-#define IA_CSS_FW_PKG_RELEASE 0x20181030 ++#define IA_CSS_FW_PKG_RELEASE 0x20181105 -- 2.17.1 diff --git a/0962-media-intel-ipu4-css-scci_IPU4_master_20181.patch b/0960-media-intel-ipu4-css-scci_IPU4_master_20181.patch similarity index 100% rename from 0962-media-intel-ipu4-css-scci_IPU4_master_20181.patch rename to 0960-media-intel-ipu4-css-scci_IPU4_master_20181.patch diff --git a/0961-media-intel-ipu4p-css-scci_IPU4_master_2018.patch b/0961-media-intel-ipu4p-css-scci_IPU4_master_2018.patch index e63b3195..e1725b37 100644 --- a/0961-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +++ b/0961-media-intel-ipu4p-css-scci_IPU4_master_2018.patch @@ -1,12 +1,12 @@ -From 06b1c3ad821bb829e227bd07dc11797181dea3c0 Mon Sep 17 00:00:00 2001 +From fad884764afe93090154e85918fb7722d4dce261 Mon Sep 17 00:00:00 2001 From: Meng Wei -Date: Mon, 3 Dec 2018 16:52:34 +0800 -Subject: [PATCH 07/32] media: intel-ipu4p: css: scci_IPU4_master_20181105_1124 +Date: Mon, 3 Dec 2018 16:52:43 +0800 +Subject: [PATCH 09/32] media: intel-ipu4p: css: scci_IPU4_master_20181108_1902 FwRelease New firmware css release. -Change-Id: I61b50d64613f6f9b7144ad717769e68f600c4d5f +Change-Id: I8aa557afe9e0c9a6481c876dd04158a05c8bbcb2 Tracked-On: PKT-1691 Signed-off-by: icg_intg Signed-off-by: Meng Wei @@ -18,45 +18,45 @@ Signed-off-by: Meng Wei 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h -index dfe9d99421d7..6e634e12c57d 100644 +index 6e634e12c57d..57f2e6fdac2c 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181030 -+#define IA_CSS_FW_PKG_RELEASE 0x20181105 +-#define IA_CSS_FW_PKG_RELEASE 0x20181105 ++#define IA_CSS_FW_PKG_RELEASE 0x20181108 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h -index dfe9d99421d7..6e634e12c57d 100644 +index 6e634e12c57d..57f2e6fdac2c 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181030 -+#define IA_CSS_FW_PKG_RELEASE 0x20181105 +-#define IA_CSS_FW_PKG_RELEASE 0x20181105 ++#define IA_CSS_FW_PKG_RELEASE 0x20181108 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h -index dfe9d99421d7..6e634e12c57d 100644 +index 6e634e12c57d..57f2e6fdac2c 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181030 -+#define IA_CSS_FW_PKG_RELEASE 0x20181105 +-#define IA_CSS_FW_PKG_RELEASE 0x20181105 ++#define IA_CSS_FW_PKG_RELEASE 0x20181108 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h -index dfe9d99421d7..6e634e12c57d 100644 +index 6e634e12c57d..57f2e6fdac2c 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181030 -+#define IA_CSS_FW_PKG_RELEASE 0x20181105 +-#define IA_CSS_FW_PKG_RELEASE 0x20181105 ++#define IA_CSS_FW_PKG_RELEASE 0x20181108 -- 2.17.1 diff --git a/0964-media-css-scci_master_20181105_2026-FwRelea.patch b/0962-media-css-scci_master_20181105_2026-FwRelea.patch similarity index 100% rename from 0964-media-css-scci_master_20181105_2026-FwRelea.patch rename to 0962-media-css-scci_master_20181105_2026-FwRelea.patch diff --git a/0965-media-buttress-Use-ISR_STATUS-in-buttress-I.patch b/0963-media-buttress-Use-ISR_STATUS-in-buttress-I.patch similarity index 100% rename from 0965-media-buttress-Use-ISR_STATUS-in-buttress-I.patch rename to 0963-media-buttress-Use-ISR_STATUS-in-buttress-I.patch diff --git a/0966-media-intel-ipu4-fix-2-kernel-panic-in-ipu-.patch b/0964-media-intel-ipu4-fix-2-kernel-panic-in-ipu-.patch similarity index 100% rename from 0966-media-intel-ipu4-fix-2-kernel-panic-in-ipu-.patch rename to 0964-media-intel-ipu4-fix-2-kernel-panic-in-ipu-.patch diff --git a/0967-media-intel-ipu4p-css-scci_IPU4_master_2018.patch b/0965-media-intel-ipu4p-css-scci_IPU4_master_2018.patch similarity index 100% rename from 0967-media-intel-ipu4p-css-scci_IPU4_master_2018.patch rename to 0965-media-intel-ipu4p-css-scci_IPU4_master_2018.patch diff --git a/0968-media-Enable-streamID-switching-for-ISYS-IO.patch b/0966-media-Enable-streamID-switching-for-ISYS-IO.patch similarity index 100% rename from 0968-media-Enable-streamID-switching-for-ISYS-IO.patch rename to 0966-media-Enable-streamID-switching-for-ISYS-IO.patch diff --git a/0969-media-Set-IPU-device-name.patch b/0967-media-Set-IPU-device-name.patch similarity index 100% rename from 0969-media-Set-IPU-device-name.patch rename to 0967-media-Set-IPU-device-name.patch diff --git a/0970-media-i2c-add-required-kconf-dependency.patch b/0968-media-i2c-add-required-kconf-dependency.patch similarity index 100% rename from 0970-media-i2c-add-required-kconf-dependency.patch rename to 0968-media-i2c-add-required-kconf-dependency.patch diff --git a/0971-media-Disable-CSI-EOF-IRQ.patch b/0969-media-Disable-CSI-EOF-IRQ.patch similarity index 100% rename from 0971-media-Disable-CSI-EOF-IRQ.patch rename to 0969-media-Disable-CSI-EOF-IRQ.patch diff --git a/0972-media-Disable-FW-IRQ-and-response-of-EOF.patch b/0970-media-Disable-FW-IRQ-and-response-of-EOF.patch similarity index 100% rename from 0972-media-Disable-FW-IRQ-and-response-of-EOF.patch rename to 0970-media-Disable-FW-IRQ-and-response-of-EOF.patch diff --git a/0973-media-intel-ipu4-remove-redundant-assignmen.patch b/0971-media-intel-ipu4-remove-redundant-assignmen.patch similarity index 100% rename from 0973-media-intel-ipu4-remove-redundant-assignmen.patch rename to 0971-media-intel-ipu4-remove-redundant-assignmen.patch diff --git a/0974-media-intel-ipu4-ov495-OV2775-OV495-enablem.patch b/0972-media-intel-ipu4-ov495-OV2775-OV495-enablem.patch similarity index 100% rename from 0974-media-intel-ipu4-ov495-OV2775-OV495-enablem.patch rename to 0972-media-intel-ipu4-ov495-OV2775-OV495-enablem.patch diff --git a/0977-media-intel-ipu4-css-scci_IPU4_master_20181.patch b/0973-media-intel-ipu4-css-scci_IPU4_master_20181.patch similarity index 73% rename from 0977-media-intel-ipu4-css-scci_IPU4_master_20181.patch rename to 0973-media-intel-ipu4-css-scci_IPU4_master_20181.patch index 2adba2b0..eb090b4d 100644 --- a/0977-media-intel-ipu4-css-scci_IPU4_master_20181.patch +++ b/0973-media-intel-ipu4-css-scci_IPU4_master_20181.patch @@ -1,12 +1,12 @@ -From 718d871ae81adcec256d81e29e931c5d79f01065 Mon Sep 17 00:00:00 2001 +From e8a262d153f4dee475db7ed7fb25fc3d80960f41 Mon Sep 17 00:00:00 2001 From: Meng Wei -Date: Wed, 2 Jan 2019 11:16:04 +0800 -Subject: [PATCH 23/32] media: intel-ipu4: css: scci_IPU4_master_20181222_1218 +Date: Mon, 24 Dec 2018 11:56:13 +0800 +Subject: [PATCH 21/32] media: intel-ipu4: css: scci_IPU4_master_20181217_1904 fw release New firmware css release. -Change-Id: I7e021c6e09f807bd6bfcad024ff83a08c466b39a +Change-Id: Ic97301af0bdfee298e938a8eb36738fd0f94c375 Tracked-On: PKT-1691 Signed-off-by: icg_intg Signed-off-by: Meng Wei @@ -16,25 +16,25 @@ Signed-off-by: Meng Wei 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h -index c1c9c0dbfb6d..408726c81714 100644 +index 57f2e6fdac2c..c1c9c0dbfb6d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181217 -+#define IA_CSS_FW_PKG_RELEASE 0x20181222 +-#define IA_CSS_FW_PKG_RELEASE 0x20181108 ++#define IA_CSS_FW_PKG_RELEASE 0x20181217 diff --git a/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h -index c1c9c0dbfb6d..408726c81714 100644 +index 57f2e6fdac2c..c1c9c0dbfb6d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181217 -+#define IA_CSS_FW_PKG_RELEASE 0x20181222 +-#define IA_CSS_FW_PKG_RELEASE 0x20181108 ++#define IA_CSS_FW_PKG_RELEASE 0x20181217 -- 2.17.1 diff --git a/0963-media-intel-ipu4p-css-scci_IPU4_master_2018.patch b/0974-media-intel-ipu4p-css-scci_IPU4_master_2018.patch similarity index 77% rename from 0963-media-intel-ipu4p-css-scci_IPU4_master_2018.patch rename to 0974-media-intel-ipu4p-css-scci_IPU4_master_2018.patch index e1725b37..3cd4286b 100644 --- a/0963-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +++ b/0974-media-intel-ipu4p-css-scci_IPU4_master_2018.patch @@ -1,12 +1,12 @@ -From fad884764afe93090154e85918fb7722d4dce261 Mon Sep 17 00:00:00 2001 +From 12550aad57004c4eaccd4ee52165f494deab32e2 Mon Sep 17 00:00:00 2001 From: Meng Wei -Date: Mon, 3 Dec 2018 16:52:43 +0800 -Subject: [PATCH 09/32] media: intel-ipu4p: css: scci_IPU4_master_20181108_1902 +Date: Mon, 24 Dec 2018 11:56:19 +0800 +Subject: [PATCH 22/32] media: intel-ipu4p: css: scci_IPU4_master_20181217_1904 FwRelease New firmware css release. -Change-Id: I8aa557afe9e0c9a6481c876dd04158a05c8bbcb2 +Change-Id: I9b4b6bc5db255b5df178bb9910fc363ff0235850 Tracked-On: PKT-1691 Signed-off-by: icg_intg Signed-off-by: Meng Wei @@ -18,45 +18,45 @@ Signed-off-by: Meng Wei 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h -index 6e634e12c57d..57f2e6fdac2c 100644 +index 48b6c6d9b21d..c1c9c0dbfb6d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181105 -+#define IA_CSS_FW_PKG_RELEASE 0x20181108 +-#define IA_CSS_FW_PKG_RELEASE 0x20181119 ++#define IA_CSS_FW_PKG_RELEASE 0x20181217 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h -index 6e634e12c57d..57f2e6fdac2c 100644 +index 48b6c6d9b21d..c1c9c0dbfb6d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181105 -+#define IA_CSS_FW_PKG_RELEASE 0x20181108 +-#define IA_CSS_FW_PKG_RELEASE 0x20181119 ++#define IA_CSS_FW_PKG_RELEASE 0x20181217 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h -index 6e634e12c57d..57f2e6fdac2c 100644 +index 48b6c6d9b21d..c1c9c0dbfb6d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181105 -+#define IA_CSS_FW_PKG_RELEASE 0x20181108 +-#define IA_CSS_FW_PKG_RELEASE 0x20181119 ++#define IA_CSS_FW_PKG_RELEASE 0x20181217 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h -index 6e634e12c57d..57f2e6fdac2c 100644 +index 48b6c6d9b21d..c1c9c0dbfb6d 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181105 -+#define IA_CSS_FW_PKG_RELEASE 0x20181108 +-#define IA_CSS_FW_PKG_RELEASE 0x20181119 ++#define IA_CSS_FW_PKG_RELEASE 0x20181217 -- 2.17.1 diff --git a/0975-media-intel-ipu4-css-scci_IPU4_master_20181.patch b/0975-media-intel-ipu4-css-scci_IPU4_master_20181.patch index eb090b4d..2adba2b0 100644 --- a/0975-media-intel-ipu4-css-scci_IPU4_master_20181.patch +++ b/0975-media-intel-ipu4-css-scci_IPU4_master_20181.patch @@ -1,12 +1,12 @@ -From e8a262d153f4dee475db7ed7fb25fc3d80960f41 Mon Sep 17 00:00:00 2001 +From 718d871ae81adcec256d81e29e931c5d79f01065 Mon Sep 17 00:00:00 2001 From: Meng Wei -Date: Mon, 24 Dec 2018 11:56:13 +0800 -Subject: [PATCH 21/32] media: intel-ipu4: css: scci_IPU4_master_20181217_1904 +Date: Wed, 2 Jan 2019 11:16:04 +0800 +Subject: [PATCH 23/32] media: intel-ipu4: css: scci_IPU4_master_20181222_1218 fw release New firmware css release. -Change-Id: Ic97301af0bdfee298e938a8eb36738fd0f94c375 +Change-Id: I7e021c6e09f807bd6bfcad024ff83a08c466b39a Tracked-On: PKT-1691 Signed-off-by: icg_intg Signed-off-by: Meng Wei @@ -16,25 +16,25 @@ Signed-off-by: Meng Wei 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h -index 57f2e6fdac2c..c1c9c0dbfb6d 100644 +index c1c9c0dbfb6d..408726c81714 100644 --- a/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4-css/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181108 -+#define IA_CSS_FW_PKG_RELEASE 0x20181217 +-#define IA_CSS_FW_PKG_RELEASE 0x20181217 ++#define IA_CSS_FW_PKG_RELEASE 0x20181222 diff --git a/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h -index 57f2e6fdac2c..c1c9c0dbfb6d 100644 +index c1c9c0dbfb6d..408726c81714 100644 --- a/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4-css/lib2600psys/lib/DSS_V2_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181108 -+#define IA_CSS_FW_PKG_RELEASE 0x20181217 +-#define IA_CSS_FW_PKG_RELEASE 0x20181217 ++#define IA_CSS_FW_PKG_RELEASE 0x20181222 -- 2.17.1 diff --git a/0976-media-intel-ipu4p-css-scci_IPU4_master_2018.patch b/0976-media-intel-ipu4p-css-scci_IPU4_master_2018.patch index 3cd4286b..580a8c9c 100644 --- a/0976-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +++ b/0976-media-intel-ipu4p-css-scci_IPU4_master_2018.patch @@ -1,12 +1,12 @@ -From 12550aad57004c4eaccd4ee52165f494deab32e2 Mon Sep 17 00:00:00 2001 +From d45663c11ffe99056f611840e745efb2f51b3945 Mon Sep 17 00:00:00 2001 From: Meng Wei -Date: Mon, 24 Dec 2018 11:56:19 +0800 -Subject: [PATCH 22/32] media: intel-ipu4p: css: scci_IPU4_master_20181217_1904 +Date: Wed, 2 Jan 2019 11:16:13 +0800 +Subject: [PATCH 24/32] media: intel-ipu4p: css: scci_IPU4_master_20181222_1218 FwRelease New firmware css release. -Change-Id: I9b4b6bc5db255b5df178bb9910fc363ff0235850 +Change-Id: Ic696e4bcbeac223281c125cc78a3e7e125d60cef Tracked-On: PKT-1691 Signed-off-by: icg_intg Signed-off-by: Meng Wei @@ -18,45 +18,45 @@ Signed-off-by: Meng Wei 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h -index 48b6c6d9b21d..c1c9c0dbfb6d 100644 +index c1c9c0dbfb6d..408726c81714 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181119 -+#define IA_CSS_FW_PKG_RELEASE 0x20181217 +-#define IA_CSS_FW_PKG_RELEASE 0x20181217 ++#define IA_CSS_FW_PKG_RELEASE 0x20181222 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h -index 48b6c6d9b21d..c1c9c0dbfb6d 100644 +index c1c9c0dbfb6d..408726c81714 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600/cpd_binary/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181119 -+#define IA_CSS_FW_PKG_RELEASE 0x20181217 +-#define IA_CSS_FW_PKG_RELEASE 0x20181217 ++#define IA_CSS_FW_PKG_RELEASE 0x20181222 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h -index 48b6c6d9b21d..c1c9c0dbfb6d 100644 +index c1c9c0dbfb6d..408726c81714 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/CNL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181119 -+#define IA_CSS_FW_PKG_RELEASE 0x20181217 +-#define IA_CSS_FW_PKG_RELEASE 0x20181217 ++#define IA_CSS_FW_PKG_RELEASE 0x20181222 diff --git a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h -index 48b6c6d9b21d..c1c9c0dbfb6d 100644 +index c1c9c0dbfb6d..408726c81714 100644 --- a/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h +++ b/drivers/media/pci/intel/ipu4/ipu4p-css/lib2600psys/lib/ICL_program_group/ia_css_fw_pkg_release.h @@ -11,4 +11,4 @@ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ --#define IA_CSS_FW_PKG_RELEASE 0x20181119 -+#define IA_CSS_FW_PKG_RELEASE 0x20181217 +-#define IA_CSS_FW_PKG_RELEASE 0x20181217 ++#define IA_CSS_FW_PKG_RELEASE 0x20181222 -- 2.17.1 diff --git a/0979-media-intel-ipu4-ti960-fix-map-conflict.patch b/0977-media-intel-ipu4-ti960-fix-map-conflict.patch similarity index 100% rename from 0979-media-intel-ipu4-ti960-fix-map-conflict.patch rename to 0977-media-intel-ipu4-ti960-fix-map-conflict.patch diff --git a/0980-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch b/0978-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch similarity index 100% rename from 0980-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch rename to 0978-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch diff --git a/0981-media-intel-ipu4-VIRT-Avoid-double-close-of.patch b/0979-media-intel-ipu4-VIRT-Avoid-double-close-of.patch similarity index 100% rename from 0981-media-intel-ipu4-VIRT-Avoid-double-close-of.patch rename to 0979-media-intel-ipu4-VIRT-Avoid-double-close-of.patch diff --git a/0982-media-intel-ipu4-pdata-for-OV495-multiport.patch b/0980-media-intel-ipu4-pdata-for-OV495-multiport.patch similarity index 100% rename from 0982-media-intel-ipu4-pdata-for-OV495-multiport.patch rename to 0980-media-intel-ipu4-pdata-for-OV495-multiport.patch diff --git a/0983-media-intel-ipu4-fix-TI960-i2c-adapter.patch b/0981-media-intel-ipu4-fix-TI960-i2c-adapter.patch similarity index 100% rename from 0983-media-intel-ipu4-fix-TI960-i2c-adapter.patch rename to 0981-media-intel-ipu4-fix-TI960-i2c-adapter.patch diff --git a/0984-media-intel-ipu4-enable-OV495-multiport.patch b/0982-media-intel-ipu4-enable-OV495-multiport.patch similarity index 100% rename from 0984-media-intel-ipu4-enable-OV495-multiport.patch rename to 0982-media-intel-ipu4-enable-OV495-multiport.patch diff --git a/0985-media-intel-ipu4-restore-back-ox03a-init-se.patch b/0983-media-intel-ipu4-restore-back-ox03a-init-se.patch similarity index 100% rename from 0985-media-intel-ipu4-restore-back-ox03a-init-se.patch rename to 0983-media-intel-ipu4-restore-back-ox03a-init-se.patch diff --git a/0986-media-intel-ipu4-separated-init-seq-for-ox0.patch b/0984-media-intel-ipu4-separated-init-seq-for-ox0.patch similarity index 94% rename from 0986-media-intel-ipu4-separated-init-seq-for-ox0.patch rename to 0984-media-intel-ipu4-separated-init-seq-for-ox0.patch index 7afa7248..fe38ea77 100644 --- a/0986-media-intel-ipu4-separated-init-seq-for-ox0.patch +++ b/0984-media-intel-ipu4-separated-init-seq-for-ox0.patch @@ -14,11 +14,11 @@ Signed-off-by: Meng Wei drivers/media/i2c/ti960.c | 121 +++++++++++++++++++++++++++++++++++++- 1 file changed, 118 insertions(+), 3 deletions(-) -diff --git a/drivers/media/i2c/ti960.c b/drivers/media/i2c/ti960.c -index 96954104da2a..381351baff4a 100644 ---- a/drivers/media/i2c/ti960.c -+++ b/drivers/media/i2c/ti960.c -@@ -1232,6 +1232,79 @@ static int ti960_register_subdev(struct ti960 *va) +Index: kernel-lts2018/drivers/media/i2c/ti960.c +=================================================================== +--- kernel-lts2018.orig/drivers/media/i2c/ti960.c ++++ kernel-lts2018/drivers/media/i2c/ti960.c +@@ -1232,6 +1232,79 @@ failed_out: return rval; } @@ -175,6 +175,3 @@ index 96954104da2a..381351baff4a 100644 rval = ti960_map_subdevs_addr(va); if (rval) --- -2.17.1 - diff --git a/config-iot-lts2018-sos b/config-iot-lts2018-sos index 7a6d2e6b..6f5b665f 100644 --- a/config-iot-lts2018-sos +++ b/config-iot-lts2018-sos @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.19.13 Kernel Configuration +# Linux/x86 4.19.18 Kernel Configuration # # @@ -4346,9 +4346,10 @@ CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # CONFIG_USB_DEFAULT_PERSIST=y CONFIG_USB_DYNAMIC_MINORS=y -# CONFIG_USB_OTG is not set +CONFIG_USB_OTG=y # CONFIG_USB_OTG_WHITELIST is not set # CONFIG_USB_OTG_BLACKLIST_HUB is not set +CONFIG_USB_OTG_FSM=y # CONFIG_USB_LEDS_TRIGGER_USBPORT is not set CONFIG_USB_MON=y # CONFIG_USB_WUSB_CBAF is not set @@ -4609,10 +4610,10 @@ CONFIG_TYPEC_TCPCI=y # USB Type-C Alternate Mode drivers # # CONFIG_TYPEC_DP_ALTMODE is not set +CONFIG_USB_ROLE_SWITCH=y CONFIG_USB_ROLES_INTEL_XHCI=y # CONFIG_USB_LED_TRIG is not set CONFIG_USB_ULPI_BUS=y -CONFIG_USB_ROLE_SWITCH=y # CONFIG_UWB is not set CONFIG_MMC=y CONFIG_MMC_BLOCK=y diff --git a/linux-iot-lts2018.spec b/linux-iot-lts2018.spec index 78da4d1c..2154bcae 100644 --- a/linux-iot-lts2018.spec +++ b/linux-iot-lts2018.spec @@ -14,16 +14,16 @@ # Name: linux-iot-lts2018 -Version: 4.19.13 +Version: 4.19.18 # upstream number is the number from PKT it consist in # YYMMDDHHMM a 10 length number -%global upstreamnumber 1901260148 -Release: 4 +%global upstreamnumber 1901301849 +Release: 5 License: GPL-2.0 Summary: The Linux kernel Url: http://www.kernel.org/ Group: kernel -Source0: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.13.tar.xz +Source0: https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.19.18.tar.xz Source1: config-iot-lts2018 Source2: config-iot-lts2018-sos Source3: cmdline-iot-lts2018 @@ -32,8 +32,8 @@ Source5: fragment-sos # quilt.url: https://github.com/intel/linux-intel-quilt # quilt.branch: 4.19/base -# quilt.tag: lts-v4.19.13-base-190126T014853Z -# config.tag: lts-v4.19.13-base-190126T014853Z +# quilt.tag: lts-v4.19.18-base-190130T184924Z +# config.tag: lts-v4.19.18-base-190130T184924Z %define ktarget0 iot-lts2018 %define kversion0 %{version}-%{release}.%{ktarget0} @@ -162,880 +162,878 @@ Patch0109: 0109-keys-Fix-the-use-of-the-C-keyword-private-.patch Patch0110: 0110-tpm-Make-SECURITYFS-a-weak-dependency.patch Patch0111: 0111-tpm-add-ptr-to-the-tpm_space-struct-to-fil.patch Patch0112: 0112-tpm-add-support-for-nonblocking-operation.patch -Patch0113: 0113-tpm-tpm_try_transmit-refactor-error-flow.patch -Patch0114: 0114-tpm-tpm_i2c_nuvoton-use-correct-command-du.patch -Patch0115: 0115-tpm2-add-new-tpm2-commands-according-to-TC.patch -Patch0116: 0116-tpm-sort-objects-in-the-Makefile.patch -Patch0117: 0117-tpm-factor-out-tpm-1.x-duration-calculatio.patch -Patch0118: 0118-tpm-add-tpm_calc_ordinal_duration-wrapper.patch -Patch0119: 0119-tpm-factor-out-tpm_get_timeouts.patch -Patch0120: 0120-tpm-move-tpm1_pcr_extend-to-tpm1-cmd.c.patch -Patch0121: 0121-tpm-move-tpm_getcap-to-tpm1-cmd.c.patch -Patch0122: 0122-tpm-factor-out-tpm1_get_random-into-tpm1-c.patch -Patch0123: 0123-tpm-move-tpm-1.x-selftest-code-from-tpm-in.patch -Patch0124: 0124-tpm-factor-out-tpm-1.x-pm-suspend-flow-int.patch -Patch0125: 0125-tpm-factor-out-tpm_startup-function.patch -Patch0126: 0126-tpm-add-tpm_auto_startup-into-tpm-interfac.patch -Patch0127: 0127-tpm-tpm-interface.c-drop-unused-macros.patch -Patch0128: 0128-tpm-tpm-space.c-remove-unneeded-semicolon.patch -Patch0129: 0129-tpm-tpm1-rewrite-tpm1_get_random-using-tpm.patch -Patch0130: 0130-tpm1-implement-tpm1_pcr_read_dev-using-tpm.patch -Patch0131: 0131-tmp1-rename-tpm1_pcr_read_dev-to-tpm1_pcr_.patch -Patch0132: 0132-tpm1-reimplement-SAVESTATE-using-tpm_buf.patch -Patch0133: 0133-tpm1-reimplement-tpm1_continue_selftest-us.patch -Patch0134: 0134-tpm-use-u32-instead-of-int-for-PCR-index.patch -Patch0135: 0135-tpm-fix-kdoc-for-tpm2_flush_context_cmd.patch -Patch0136: 0136-misc-remove-redundant-include-moduleparam..patch -Patch0137: 0137-mei-replace-POLL-with-EPOLL-for-write-queu.patch -Patch0138: 0138-mei-hbm-drop-BUG-from-the-hbm-handler.patch -Patch0139: 0139-mei-flush-queues-by-the-host-client-only.patch -Patch0140: 0140-mei-bus-export-to_mei_cl_device-for-mei-cl.patch -Patch0141: 0141-mei-expedite-ioctl-return-on-the-notify-se.patch -Patch0142: 0142-mei-dma-ring-buffers-allocation.patch -Patch0143: 0143-mei-hbm-setup-dma-ring.patch -Patch0144: 0144-mei-hw-add-dma-ring-control-block.patch -Patch0145: 0145-mei-dma-ring-implement-rx-circular-buffer-.patch -Patch0146: 0146-mei-dma-ring-implement-transmit-flow.patch -Patch0147: 0147-mei-bump-hbm-version-to-2.1.patch -Patch0148: 0148-mei-me-mark-CNP-devices-as-having-dma-supp.patch -Patch0149: 0149-mei-squash-single_recv_buf-into-one-bit-in.patch -Patch0150: 0150-mei-restrict-vm-tag-support-to-hbm-version.patch -Patch0151: 0151-mei-hbm-add-capabilities-message.patch -Patch0152: 0152-mei-add-extended-header.patch -Patch0153: 0153-mei-add-vtag-support-bit-in-client-propert.patch -Patch0154: 0154-mei-bump-hbm-version-to-2.2.patch -Patch0155: 0155-mei-add-a-spin-lock-to-protect-rd_complete.patch -Patch0156: 0156-mei-add-connect-with-vtag-ioctl.patch -Patch0157: 0157-mei-keep-pending-read-on-one-client-discon.patch -Patch0158: 0158-mei-flush-only-objects-belonging-to-fp-in-.patch -Patch0159: 0159-mei-free-read-cb-on-ctrl_wr-list-flush.patch -Patch0160: 0160-mei-bus-use-zero-vtag-for-bus-clients.patch -Patch0161: 0161-mei-expose-device-state-in-sysfs.patch -Patch0162: 0162-mei-bus-add-more-client-attributes-to-sysf.patch -Patch0163: 0163-mei-bus-unconditionally-enable-clients-wit.patch -Patch0164: 0164-mei-virtio-V13-virtualization-frontend-dri.patch -Patch0165: 0165-mei-dal-add-acp-parser-code.patch -Patch0166: 0166-mei-dal-add-bh-plugin-code.patch -Patch0167: 0167-mei-dal-dynamic-application-loader.patch -Patch0168: 0168-mei-dal-add-character-device-for-user-spac.patch -Patch0169: 0169-mei-dal-add-kernel-space-interface.patch -Patch0170: 0170-mei-dal-add-exclusive-access-menagement.patch -Patch0171: 0171-mei-dal-add-module-Documentation.patch -Patch0172: 0172-mei-dal-add-test-module.patch -Patch0173: 0173-security-add-keystore-driver-support.patch -Patch0174: 0174-ACPI-battery-use-cache_time-as-cache-enabled.patch -Patch0175: 0175-FOR-CNL-FPGA-Add-support-for-CNL-FPGA.patch -Patch0176: 0176-FOR-CNL-FPGA-Load-nhlt-from-firmware-instead-.patch -Patch0177: 0177-FOR-CNL-FPGA-Add-facility-to-load-ROM-via-deb.patch -Patch0178: 0178-FOR-CNL-FPGA-ASoC-mfd-Intel-changes-for-WM828.patch -Patch0179: 0179-ASoC-Intel-Add-CNL-Machine-Driver-with-code-w.patch -Patch0180: 0180-FPGA-ASoC-rt274-Force-load-rt274-without-acpi.patch -Patch0181: 0181-ASoC-HDA-EXT-Mark-dma-buffers-as-un-cacheble.patch -Patch0182: 0182-ASoC-intel-skylake-mark-ring-buffer-as-non-ca.patch -Patch0183: 0183-REVERTME-ASoC-Intel-CNL-Load-firmware-in-dsp_.patch -Patch0184: 0184-ASoC-Intel-CNL-Add-library-loading-support.patch -Patch0185: 0185-Soundwire-squashed-commits.patch -Patch0186: 0186-ASoC-Add-dai_ops-to-set-the-stream-tag.patch -Patch0187: 0187-ASoC-CNL-Register-soundwire-controller-to-bus.patch -Patch0188: 0188-ASoC-Intel-Add-support-for-SoundWire-link-in-.patch -Patch0189: 0189-ASoC-Intel-Skylake-Interface-change-between-f.patch -Patch0190: 0190-ASoC-Intel-Add-support-to-bypass-NHLT-reading.patch -Patch0191: 0191-ASoC-Intel-Skylake-Add-support-for-the-SDW-da.patch -Patch0192: 0192-ASoC-CNL-Add-SoundWire-machine-file.patch -Patch0193: 0193-SoundWire-Intel-Register-4-master-controller-.patch -Patch0194: 0194-REVERTME-SDW-CNL-Register-only-3-master-contr.patch -Patch0195: 0195-ASoC-CNL-Add-support-for-DMIC-link-in-SDW-mac.patch -Patch0196: 0196-ASoC-SKL-Add-DAI-for-the-SoundWire-PDM-interf.patch -Patch0197: 0197-Intel-ASoc-Handle-SDW-PCM-hw_params-for-PDM.patch -Patch0198: 0198-ASoC-Codecs-Add-support-for-SV-FPGA-SoundWire.patch -Patch0199: 0199-ASoC-Intel-Add-machine-driver-for-SoundWire-S.patch -Patch0200: 0200-REVERTME-SoundWire-Hardcoding-in-bus-driver-f.patch -Patch0201: 0201-SDW-Intel-Fix-hardcoding-for-SVFPGA-codec.patch -Patch0202: 0202-REVERTME-SDW-Increment-the-dev_id-for-every-s.patch -Patch0203: 0203-SDW-Support-async-messages-for-bus-driver.patch -Patch0204: 0204-SDW-Change-log-level-to-error-from-debug.patch -Patch0205: 0205-SDW-Intel-Enabled-the-Multimode-for-Intel-SDW.patch -Patch0206: 0206-SDW-Intel-Add-the-handler-for-async-message-t.patch -Patch0207: 0207-SDW-CNL-Fix-the-syncgo-functionality.patch -Patch0208: 0208-SoundWire-Remove-dead-code-from-SoundWire-BW-.patch -Patch0209: 0209-REVERTME-SDW-Skip-the-Slave-programming-for-t.patch -Patch0210: 0210-SoundWire-Add-support-for-the-aggregation.patch -Patch0211: 0211-REVERTME-ASoC-CNL-Mark-SDW-master-1-and-2-as-.patch -Patch0212: 0212-ASoC-CNL-Update-capabilities-fields-of-SDW-ma.patch -Patch0213: 0213-ASoC-CNL-Add-support-for-aggregated-gateways.patch -Patch0214: 0214-ASoC-CNL-Add-DAIS-for-SoundWire-masters.patch -Patch0215: 0215-ASoC-core-Adds-support-for-DSP-loopback-dai-l.patch -Patch0216: 0216-WORKAROUND-ASoC-dapm-fix-stream-directions-fo.patch -Patch0217: 0217-ASoC-utils-add-inputs-and-outputs-to-dummy-co.patch -Patch0218: 0218-ASoC-core-Do-not-return-for-dummy-codec-in-so.patch -Patch0219: 0219-ASoC-SKL-Fix-ch_cfg-when-fixup-is-applied.patch -Patch0220: 0220-ASoC-Intel-Skylake-Add-NHLT-override-control.patch -Patch0221: 0221-ASoC-Intel-Skylake-Add-debugfs-NHLT-ssp-overr.patch -Patch0222: 0222-ASoC-Intel-Skylake-Add-debugfs-NHLT-dmic-over.patch -Patch0223: 0223-ASoC-Intel-Skylake-Read-blobs-from-debugfs-on.patch -Patch0224: 0224-ASoC-Intel-Skylake-NHLT-override-check-cfg-si.patch -Patch0225: 0225-ASoC-Intel-Skylake-add-ssp-blob-override-supp.patch -Patch0226: 0226-WORKAROUND-Remove-size-check-for-DMIC-blob.patch -Patch0227: 0227-REVERTME-SKL-Topology-Add-logic-to-create-SDW.patch -Patch0228: 0228-SKL-PCM-Derive-the-SDW-master-controller-numb.patch -Patch0229: 0229-REVERTME-SKL-PCM-Enable-aggregation-for-the-M.patch -Patch0230: 0230-ASoC-Intel-Skylake-Driver-ring-buffer-APIs-fo.patch -Patch0231: 0231-ASoC-Intel-Skylake-Handler-for-firmware-log-b.patch -Patch0232: 0232-ASoC-Intel-Skylake-Compress-ops-for-firmware-.patch -Patch0233: 0233-ASoC-Intel-Skylake-Check-buffer-users-and-pre.patch -Patch0234: 0234-ASoC-Intel-Skylake-Wake-up-any-potential-read.patch -Patch0235: 0235-ASoC-Intel-Skylake-Convert-buffer-size-to-of-.patch -Patch0236: 0236-ASoC-Intel-CNL-Initialize-trace-buffer-window.patch -Patch0237: 0237-ASoC-Intel-Skylake-Add-trace-buffer-dais-for-.patch -Patch0238: 0238-REVERTME-1-Revert-when-logging-is-updated-in-.patch -Patch0239: 0239-ASoC-Intel-Skylake-Add-dsp-log-level-selectio.patch -Patch0240: 0240-ASoC-Intel-CNL-Enable-SDW-aggregation-support.patch -Patch0241: 0241-ASoC-Intel-SKL-Remove-SDW-aggregation-hardcod.patch -Patch0242: 0242-ASoC-Intel-Aggregation-fixes-for-masters-othe.patch -Patch0243: 0243-ASoC-Fix-TLV-control-size-in-TLV-handler.patch -Patch0244: 0244-ALSA-hda-Enhance-HD-audio-framework-to-suppor.patch -Patch0245: 0245-ALSA-hda-Service-buffer-completed-interrupts-.patch -Patch0246: 0246-ASoC-Intel-Add-delete-module-IPC.patch -Patch0247: 0247-ASoC-Intel-Add-Probe-compress-APIs.patch -Patch0248: 0248-ASoC-Intel-Skylake-KW-fixes-for-probe-feature.patch -Patch0249: 0249-ASoC-Intel-Skylake-Probe-Start-DMA-before-set.patch -Patch0250: 0250-ASoC-Intel-Skylake-Probe-Limit-the-bytes-to-c.patch -Patch0251: 0251-ASoC-Intel-Skylake-Probe-Increase-the-DMA-buf.patch -Patch0252: 0252-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch -Patch0253: 0253-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch -Patch0254: 0254-Soundwire-squashed-commits-2.patch -Patch0255: 0255-ALSA-core-let-low-level-driver-or-userspace-d.patch -Patch0256: 0256-ALSA-pcm-conditionally-avoid-mmap-of-control-.patch -Patch0257: 0257-ALSA-hda-ext-add-spib-to-stream-context.patch -Patch0258: 0258-ASoC-Intel-Skylake-add-support-for-spib-mode.patch -Patch0259: 0259-ASoC-Intel-CNL-Fetch-ACPI-data-for-SoundWire-.patch -Patch0260: 0260-ASoC-Intel-CNL-get-SoundWire-Master-capabilit.patch -Patch0261: 0261-REVERTME-ASoC-Intel-CNL-Define-DPN-package-fo.patch -Patch0262: 0262-ASoC-Intel-Skylake-Support-for-24KHz-SoC-DMIC.patch -Patch0263: 0263-ASoC-add-rt700-codec-driver.patch -Patch0264: 0264-ASoC-Intel-Add-support-for-ALC700-machine-dri.patch -Patch0265: 0265-ASoC-Intel-CNL-Add-new-BE-dai-for-ALC701-HS-p.patch -Patch0266: 0266-ASoC-Intel-CNL-Enable-sdw-interrupt-during-D0.patch -Patch0267: 0267-ASoC-Intel-Skylake-fix-for-large-get-config-a.patch -Patch0268: 0268-ASoC-Intel-Skylake-generic-IPC-message-suppor.patch -Patch0269: 0269-ASoC-Intel-Skylake-Add-support-to-get-fw-conf.patch -Patch0270: 0270-WORKAROUND-Register-masters-only-if-RT700-is-.patch -Patch0271: 0271-WORKAROUND-Add-if-for-platform-codec-name-in-.patch -Patch0272: 0272-REVERTME-ASoC-Intel-CNL-Change-BE-id-to-SDW-M.patch -Patch0273: 0273-ASoC-Intel-CNL-Update-dsp-ops-API-to-take-dir.patch -Patch0274: 0274-ASoC-Intel-CNL-Platform-driver-implementation.patch -Patch0275: 0275-ASoC-Intel-CNL-Register-BRA-ops-in-init.patch -Patch0276: 0276-ASoC-rt700-codec-changes-for-BRA-feature.patch -Patch0277: 0277-ASoC-Intel-Add-support-for-Icelake-IDs.patch -Patch0278: 0278-ASoC-Intel-Fix-build-warning-for-unused-varia.patch -Patch0279: 0279-ASoC-Intel-Fix-Compilation-issues-for-probe-c.patch -Patch0280: 0280-ASoC-Intel-Kconfig-and-Makefile-changes-for-S.patch -Patch0281: 0281-ASoC-Intel-Boards-Add-CNL-RT274-I2S-machine-d.patch -Patch0282: 0282-ASoC-Intel-Modify-Icelake-machine-id-to-use-R.patch -Patch0283: 0283-ASoC-Intel-board-Add-id_table-in-cnl_rt274.patch -Patch0284: 0284-ASoC-Intel-Skylake-Support-for-all-rates-from.patch -Patch0285: 0285-ASoc-rt700-Fix-for-first-playback-and-capture.patch -Patch0286: 0286-ASoC-Intel-Add-SoundWire-aggregation-support.patch -Patch0287: 0287-ASoC-Intel-Skylake-Avoid-resume-capablity-for.patch -Patch0288: 0288-ASoC-Intel-Skylake-Support-all-I2S-ports-with.patch -Patch0289: 0289-ASoC-Intel-Skylake-Add-platform-DAI-for-deepb.patch -Patch0290: 0290-ASoC-Intel-board-Enable-deepbuffer-capture-in.patch -Patch0291: 0291-ASoC-Intel-Add-Icelake-machine-id-to-use-RT70.patch -Patch0292: 0292-ASoC-Intel-Add-Icelake-machine-id-to-use-WM82.patch -Patch0293: 0293-ASoC-Intel-Skylake-Fix-library-name-length.patch -Patch0294: 0294-ASoC-Intel-Skylake-Update-SDW-BRA-interface.patch -Patch0295: 0295-ASoC-Intel-Skylake-Split-dais-and-add-flag-fo.patch -Patch0296: 0296-ASoC-Intel-Skylake-Add-component-ops-for-dai-.patch -Patch0297: 0297-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch -Patch0298: 0298-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch -Patch0299: 0299-ASoC-Intel-Update-device-type-entry-for-Sound.patch -Patch0300: 0300-ASoC-Intel-Skylake-Use-device-type-to-determi.patch -Patch0301: 0301-ASoC-Intel-Remove-pdi_type-support-from-topol.patch -Patch0302: 0302-ASoC-Intel-Skylake-Define-tokens-for-aggregat.patch -Patch0303: 0303-ASoC-Intel-Skylake-Parse-tokens-to-support-ag.patch -Patch0304: 0304-ASoC-Intel-CNL-Add-DAIs-for-SDW-Aggregation.patch -Patch0305: 0305-ASoC-Intel-Kconfig-changes-for-SoundWire-aggr.patch -Patch0306: 0306-ASoC-rt700-codec-changes-for-SDW-Aggregation.patch -Patch0307: 0307-ASoC-Intel-Boards-Add-SDW-Aggregation-changes.patch -Patch0308: 0308-ASoC-Intel-Change-sst_ipc_tx_message_wait-api.patch -Patch0309: 0309-ASoC-Intel-Skylake-Extract-the-receive-respon.patch -Patch0310: 0310-ASoC-Intel-Skylake-Querying-FW-CONFIG-informa.patch -Patch0311: 0311-ASoC-Intel-Skylake-Parse-the-fw-property.patch -Patch0312: 0312-ASoC-Intel-Skylake-Check-for-memory-reclaim-b.patch -Patch0313: 0313-ASoC-Intel-Skylake-Better-handling-of-stream-.patch -Patch0314: 0314-REVERTME-ASoC-Intel-Skylake-Set-DUM-bit-in-EM.patch -Patch0315: 0315-ASoC-Intel-Skylake-Add-D0i3-support-for-Icela.patch -Patch0316: 0316-ASoC-Intel-Skylake-Audio-format-mismatch-dete.patch -Patch0317: 0317-ASoC-Intel-Skylake-add-sysfs-files-for-firmwa.patch -Patch0318: 0318-ASoC-Intel-Skylake-Append-SDW-device-to-devic.patch -Patch0319: 0319-ASoC-Intel-Skylake-Debugfs-for-core-power-han.patch -Patch0320: 0320-ASoC-Intel-Skylake-DebugFs-changes-to-suit-FD.patch -Patch0321: 0321-ASoC-Intel-Skylake-Support-Pipeline-Propertie.patch -Patch0322: 0322-ASoC-Intel-Skylake-Add-check-for-buffer-overf.patch -Patch0323: 0323-ASoC-Intel-Skylake-Increase-the-SSP-count-in-.patch -Patch0324: 0324-ASoC-Intel-CNL-Retrieve-module-id-from-GUID.patch -Patch0325: 0325-ASoc-rt700-Remove-runtime-get-and-put-from-se.patch -Patch0326: 0326-ASoC-Intel-board-Add-SSP0-codec-codec-link.patch -Patch0327: 0327-ASoC-Intel-board-Move-cnl_rt274-clock-setting.patch -Patch0328: 0328-SoundWire-Select-default-frame-shape-based-on.patch -Patch0329: 0329-ASoC-rt700-Added-support-for-ICL-FPGA-SDW-Agg.patch -Patch0330: 0330-ASoC-Intel-Boards-Add-support-for-ICL-FPGA-SD.patch -Patch0331: 0331-ASoC-Intel-CNL-Add-support-for-ICL-FPGA-SDW-A.patch -Patch0332: 0332-ASoC-Intel-Skylake-Add-support-for-getting-hw.patch -Patch0333: 0333-ASoC-Intel-Skylake-Get-dsp-core-count-from-hw.patch -Patch0334: 0334-ASoC-Intel-Skylake-Add-user-notification-even.patch -Patch0335: 0335-ASoC-Intel-Extract-the-nhlt-version-from-DSDT.patch -Patch0336: 0336-ASoC-Intel-Skylake-Increase-the-max-number-of.patch -Patch0337: 0337-ASoC-Intel-Skylake-Add-single-module-support-.patch -Patch0338: 0338-ASoC-Intel-Skylake-Fix-incorrect-parsing-of-p.patch -Patch0339: 0339-ASoC-Intel-Skylake-Create-SSP-BE-dais-dynamic.patch -Patch0340: 0340-ASoC-Intel-Skylake-Adding-support-for-set-sys.patch -Patch0341: 0341-ASoC-Intel-Skylake-Update-FW-Trace-logs-featu.patch -Patch0342: 0342-ASoC-Intel-Skylake-Fix-FW-logging-data-corrup.patch -Patch0343: 0343-ASoC-Intel-Board-Add-BXTP-MRB-machine-driver-.patch -Patch0344: 0344-ASoC-tdf8532-NXP-TDF8532-audio-class-D-amplif.patch -Patch0345: 0345-ASoC-Intel-Skylake-Added-support-for-creating.patch -Patch0346: 0346-ASoC-Intel-boards-Remove-SSP1-codec-dai-link-.patch -Patch0347: 0347-WORKAROUND-FIX-Kconfigs-to-build-compile-with.patch -Patch0348: 0348-ASoC-Intel-Boards-FW-logging-DAI-links-for-BX.patch -Patch0349: 0349-ASoC-Intel-Board-DAI-links-for-probe-in-APL-m.patch -Patch0350: 0350-ASoC-Intel-Skylake-Probe-sequence-changes-bas.patch -Patch0351: 0351-ASoC-Intel-Skylake-Probe-DMA-release-for-extr.patch -Patch0352: 0352-ASoC-Intel-Multiple-I-O-PCM-format-support-fo.patch -Patch0353: 0353-ASoC-Intel-Skylake-Parse-manifest-data-to-fil.patch -Patch0354: 0354-ASoC-Intel-Skylake-Add-support-for-always-on-.patch -Patch0355: 0355-ASoC-Intel-bxtn-Initialize-fw-tracing-window-.patch -Patch0356: 0356-ASoC-Intel-Board-DAI-links-for-probe-in-GPMRB.patch -Patch0357: 0357-ASoC-Intel-Boards-Add-FW-logging-DAI-links-fo.patch -Patch0358: 0358-ASoC-Intel-Skylake-Send-correct-size-in-ipc-h.patch -Patch0359: 0359-ASoC-Intel-board-Add-support-for-HDMI-in-cnl_.patch -Patch0360: 0360-ASoC-Intel-Skylake-Support-for-DSP-exception-.patch -Patch0361: 0361-ASoC-Intel-board-Separate-out-icl_rt274-from-.patch -Patch0362: 0362-ASoC-Intel-Skylake-Removed-duplicate-IPC-call.patch -Patch0363: 0363-ASoC-Intel-Skylake-Notify-topology-changes.patch -Patch0364: 0364-ASoC-rt700-Remove-unused-variables.patch -Patch0365: 0365-ASoC-rt700-Remove-prints-used-for-debugging.patch -Patch0366: 0366-ASoC-tdf8532-Fix-compilation-warnings.patch -Patch0367: 0367-ASoC-Intel-CNL-Remove-larger-frame-size-warni.patch -Patch0368: 0368-ASoC-Intel-Skylake-Add-support-for-module-not.patch -Patch0369: 0369-ASoC-Intel-Board-Add-pm_ops-to-fix-suspend-re.patch -Patch0370: 0370-ASoC-rt700-Remove-unused-variable.patch -Patch0371: 0371-ASoC-Intel-board-Remove-unused-function-cnl_d.patch -Patch0372: 0372-ASoC-Intel-Skylake-Move-prototype-to-appropri.patch -Patch0373: 0373-ASoC-Intel-cnl-Move-d0i-03-ops-after-cnl_load.patch -Patch0374: 0374-ASoC-Intel-Skylake-Support-for-Probe-DMA-Buff.patch -Patch0375: 0375-ASoC-Intel-Skylake-Add-a-separate-module-type.patch -Patch0376: 0376-ASoC-Intel-Skylake-Add-support-for-DMA-Buffer.patch -Patch0377: 0377-ASoC-Intel-Set-all-I2S-ports-to-slave-mode-af.patch -Patch0378: 0378-ASoC-Intel-Skylake-Return-default-sampling-ra.patch -Patch0379: 0379-ASoC-Intel-Board-Add-fixup-for-32-bit-masking.patch -Patch0380: 0380-ASoC-Intel-Skylake-Add-support-for-GAIN-modul.patch -Patch0381: 0381-ASoC-Intel-Skylake-Fix-codec_dai-NULL-pointer.patch -Patch0382: 0382-ASoC-Intel-Skylake-Check-for-word_length_buff.patch -Patch0383: 0383-ASoC-Intel-Skylake-Fix-cnl_sdw_startup-error-.patch -Patch0384: 0384-ASoC-Intel-Skylake-Fix-error-handling-in-cnl_.patch -Patch0385: 0385-ASoC-Intel-Skylake-Check-for-NHLT-ACPI-header.patch -Patch0386: 0386-ASoC-Intel-Skylake-Fix-Max-DSP-MCPS-value.patch -Patch0387: 0387-ASoC-Intel-Skylake-Fix-bug-in-module-id-retri.patch -Patch0388: 0388-ASoC-Intel-Skylake-Fix-incorrect-in_fmt-and-o.patch -Patch0389: 0389-ASoC-Intel-Skylake-Avoid-global-kcontrol-poin.patch -Patch0390: 0390-ASoC-Intel-Skylake-Return-default-sampling-ra.patch -Patch0391: 0391-ASoC-Intel-Skylake-Add-ULL-machine-driver-ent.patch -Patch0392: 0392-ASoC-Intel-Board-Add-BXTP-MRB-ULL-machine-dri.patch -Patch0393: 0393-ASoC-Intel-Skylake-Add-support-to-configure-A.patch -Patch0394: 0394-WA-Disable-irq-in-rt274.patch -Patch0395: 0395-ASoC-Intel-Skylake-Replace-modulus-operator-w.patch -Patch0396: 0396-ASoC-Intel-Skylake-Poll-on-ADSPCS.CSTALL-bit-.patch -Patch0397: 0397-ASoC-Intel-Skylake-Add-delay-during-DSP-core-.patch -Patch0398: 0398-ALSA-hda-Make-sure-DMA-is-stopped-by-reading-.patch -Patch0399: 0399-ALSA-hda-Make-sure-DMA-is-started-by-reading-.patch -Patch0400: 0400-ALSA-hda-Log-HDA-Hardware-related-errors.patch -Patch0401: 0401-ALSA-hda-check-if-stream-is-stopped-in-snd_hd.patch -Patch0402: 0402-ASoC-Intel-Skylake-Support-multiple-format-co.patch -Patch0403: 0403-SoundWire-Fix-CRC8-dependency.patch -Patch0404: 0404-soundwire-Change-programming-sequence-for-BRA.patch -Patch0405: 0405-WORKAROUND-ASoC-tdf8532-Add-delay-while-readi.patch -Patch0406: 0406-SoundWire-Perform-clock-exit-by-setting-clock.patch -Patch0407: 0407-ASoC-Intel-Skylake-Add-API-to-reset-private-i.patch -Patch0408: 0408-ASoC-Intel-Skylake-Add-an-API-to-reset-the-us.patch -Patch0409: 0409-ASoC-Intel-Skylake-Fix-the-is_dsp_running-to-.patch -Patch0410: 0410-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch -Patch0411: 0411-REVERTME-ASoC-Intel-CNL-Fix-for-the-firmware-.patch -Patch0412: 0412-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch -Patch0413: 0413-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch -Patch0414: 0414-ASoC-Intel-Skylake-Update-gain-interface-stru.patch -Patch0415: 0415-ASoC-Intel-Skylake-Read-extended-crash-dump-i.patch -Patch0416: 0416-ASoC-Intel-Skylake-Fix-issues-in-ADSP-Extende.patch -Patch0417: 0417-ASoC-Intel-kconfig-Make-drivers-build-on-x86-.patch -Patch0418: 0418-ASoC-tdf8532-Fix-Audio-memory-leakage-at-boot.patch -Patch0419: 0419-ASoC-Intel-Skylake-Fix-Audio-memory-leakage-a.patch -Patch0420: 0420-ASoC-Intel-Skylake-Add-support-to-notify-reso.patch -Patch0421: 0421-ASoC-Intel-BXT-Retry-FW-download-sequence.patch -Patch0422: 0422-ASoC-Intel-Skylake-Check-for-pointer-validity.patch -Patch0423: 0423-ASoC-Intel-Skylake-Fix-logs_core-array-size.patch -Patch0424: 0424-ASoC-Intel-Skylake-Replace-strcpy-with-strlcp.patch -Patch0425: 0425-ASoC-Intel-Boards-Replace-codec-to-component-.patch -Patch0426: 0426-ASoC-Intel-Skylake-Set-dsp-cores-off-during-s.patch -Patch0427: 0427-ASoC-Intel-Disable-dsp-core-in-skl_shutdown.patch -Patch0428: 0428-ASoC-soc-pcm-Fix-FE-and-BE-race-when-accessin.patch -Patch0429: 0429-Revert-ASoC-tdf8532-Fix-Audio-memory-leakage-.patch -Patch0430: 0430-ASoC-tdf8532-fix-memleak-in-tdf8532_wait_stat.patch -Patch0431: 0431-ASoC-tdf8532-right-free-allocated-space-in-ca.patch -Patch0432: 0432-ASoC-Intel-Skylake-Add-kabylake-R-machine-dri.patch -Patch0433: 0433-ASoC-Intel-Boards-Add-machine-driver-for-Kaby.patch -Patch0434: 0434-ASoC-rt298-Set-jack-combo-for-kabylake-R.patch -Patch0435: 0435-ASoC-Intel-Boards-Add-machine-driver-for-RSE-.patch -Patch0436: 0436-ASoC-Intel-Boards-Add-machine-driver-for-HU-t.patch -Patch0437: 0437-ASoC-Intel-Boards-Add-a-machine-driver-for-BX.patch -Patch0438: 0438-ASoC-Intel-Boards-Add-machine-driver-for-gene.patch -Patch0439: 0439-ASoC-Intel-Skylake-Add-RSE-HU-M3-and-generic-.patch -Patch0440: 0440-ASoC-Intel-Skylake-Resolve-load-DMA-control-c.patch -Patch0441: 0441-ASoC-Intel-Skylake-Improve-BXT-P-machine-driv.patch -Patch0442: 0442-ASoC-Intel-common-Provide-an-interface-to-sen.patch -Patch0443: 0443-ASoC-Intel-BXT-Remove-compile-warnings.patch -Patch0444: 0444-ASoC-topology-Increase-SND_SOC_TPLG_NUM_TEXTS.patch -Patch0445: 0445-ASoC-Intel-board-Add-support-for-FE-dynamic-d.patch -Patch0446: 0446-ASoC-Intel-Skylake-Enable-use_tplg_pcm-flag-f.patch -Patch0447: 0447-ASoC-Intel-Fix-race-condition-in-IPC-rx-list.patch -Patch0448: 0448-ASoC-Intel-Skylake-pipeline-needs-to-be-reset.patch -Patch0449: 0449-Revert-ASoC-topology-Increase-SND_SOC_TPLG_NU.patch -Patch0450: 0450-ASoC-Intel-Allow-for-firmware-load-retry.patch -Patch0451: 0451-Revert-ASoC-core-Do-not-return-for-dummy-code.patch -Patch0452: 0452-ASoC-Intel-Skylake-Align-with-v4.18-rc1-linux.patch -Patch0453: 0453-ASoC-Intel-Move-bxt-machine-drv-tables-to-com.patch -Patch0454: 0454-ASoC-Intel-Move-kbl-machine-drv-tables-to-com.patch -Patch0455: 0455-ASoC-Intel-Move-skl-machine-drv-tables-to-com.patch -Patch0456: 0456-ASoC-Intel-Move-glk-machine-drv-tables-to-com.patch -Patch0457: 0457-ASoC-Intel-Move-icl-machine-drv-tables-to-com.patch -Patch0458: 0458-ASoC-Intel-Move-cnl-machine-drv-tables-to-com.patch -Patch0459: 0459-ASoC-Intel-Skylake-validate-the-downloaded-fi.patch -Patch0460: 0460-ASoC-Intel-Replace-hdac_ext_bus-usage-with-hd.patch -Patch0461: 0461-REVERTME-Fix-no-audio-output-after-resume-fro.patch -Patch0462: 0462-REVERTME-Increase-tdf8532-timeout-and-number-.patch -Patch0463: 0463-fix-the-invalid-double-free-in-tdf8532-i2c-re.patch -Patch0464: 0464-ASoC-Intel-Skylake-Restore-static-SSP5-BE-dec.patch -Patch0465: 0465-Revert-ASoC-Intel-Skylake-validate-the-downlo.patch -Patch0466: 0466-ASoC-Intel-BXT-Print-version-details-of-ADSP-.patch -Patch0467: 0467-ASoC-tdf8532-add-crit-sections.patch -Patch0468: 0468-ASoC-Intel-bxtp-BXT_FW_INIT_RETRY-set-to-10.patch -Patch0469: 0469-ASoC-Intel-Skylake-Fix-for-lockup-in-sst_ipc_.patch -Patch0470: 0470-ASoC-Intel-Skylake-Set-DUM-bit-in-EM2-registe.patch -Patch0471: 0471-PCI-add-pci_devices_ignore-cmdline-optio.patch -Patch0472: 0472-x86-add-ACRN-hypervisor-guest.patch -Patch0473: 0473-VHM-add-vhm-char-device-driver.patch -Patch0474: 0474-VHM-add-guest-memory-management-support.patch -Patch0475: 0475-VHM-add-guest-memory-remote-mapping-supp.patch -Patch0476: 0476-VHM-add-ioreq-service-support.patch -Patch0477: 0477-VHM-add-interrupt-injection-support.patch -Patch0478: 0478-VHM-add-API-to-get-vm-info.patch -Patch0479: 0479-VHM-add-API-to-do-guest-gpa2hpa-translat.patch -Patch0480: 0480-VHM-add-passthrough-device-support.patch -Patch0481: 0481-x86-acrn-add-write_msi-pv-ops-to-interce.patch -Patch0482: 0482-sos-cleanup-hypercall-API.patch -Patch0483: 0483-vcpu-export-vcpu-create-interface-to-DM.patch -Patch0484: 0484-sos-clean-up-ptdev-msi-x-table-ioremap-o.patch -Patch0485: 0485-sos-Update-the-common-head-file.patch -Patch0486: 0486-sos-cleanup-ptdev-irq-structure.patch -Patch0487: 0487-VBS-K-Virtio-Backend-Service-in-Kernel-a.patch -Patch0488: 0488-VBS-K-virtqueue-initialization-API.patch -Patch0489: 0489-VBS-K-virtqueue-runtime-API.patch -Patch0490: 0490-VBS-K-added-a-VBS-K-reference-driver.patch -Patch0491: 0491-hypercall-refine-hypercall-interfaces.patch -Patch0492: 0492-vhm-refine-vm-related-hypercall-ioctrl.patch -Patch0493: 0493-hypercall-refine-HC-ID-and-parameter-num.patch -Patch0494: 0494-ioctl-cleanup-ioctl-structure.patch -Patch0495: 0495-Shared_buf-add-shared-buffer.patch -Patch0496: 0496-Shared_buf-added-hypercall-for-shared_bu.patch -Patch0497: 0497-ACRNTrace-add-acrn-trace-module.patch -Patch0498: 0498-sos-fix-potential-bugs-in-ptdev-msi-x-ac.patch -Patch0499: 0499-vhm-cleanup-ioctls.patch -Patch0500: 0500-VHM-check-HV-api-version-for-VHM-module-.patch -Patch0501: 0501-VHM-add-VHM-api-version-support.patch -Patch0502: 0502-virtio-framework-support-ACRN-virtio-dev.patch -Patch0503: 0503-VHM-sync-public-header-file-acrn_common..patch -Patch0504: 0504-Check-x86_hyper-type-before-doing-hyperc.patch -Patch0505: 0505-VHM-replace-function-name-update_mmio_ma.patch -Patch0506: 0506-VHM-refine-memory-segment-interface.patch -Patch0507: 0507-VBS-K-added-VHM-wrapper-APIs.patch -Patch0508: 0508-api-doc-add-ACRN-VBS-API-docs.patch -Patch0509: 0509-HVLog-reserve-memory-for-ACRN-HVLog.patch -Patch0510: 0510-HVLog-add-HVLog-module.patch -Patch0511: 0511-update-MEM_ATTR_WRITE_PROT-with-WB-polic.patch -Patch0512: 0512-vhm-modify-mmio-memory-map-unmap-api.patch -Patch0513: 0513-vhm-cleanup-update-one-field-name-in-vhm.patch -Patch0514: 0514-sos-add-a-config-for-VHM.patch -Patch0515: 0515-api-doc-add-vhm-API-docs.patch -Patch0516: 0516-api-doc-update-ACRN-VBS-API-docs.patch -Patch0517: 0517-license-update-intel-license-for-ACRN-VB.patch -Patch0518: 0518-VBS-K-fix-compilation-warnings-in-VBS-K-.patch -Patch0519: 0519-Cleanup-Kconfig.patch -Patch0520: 0520-skip-sbuf-and-vhm-initialization-when-bo.patch -Patch0521: 0521-VHM-add-hugetlb-page-ept-mapping-support.patch -Patch0522: 0522-VHM-change-VM_SYSMEM-VM_MMIO-to-VM_MEMMA.patch -Patch0523: 0523-VHM-add-hash-table-support-for-huge-page.patch -Patch0524: 0524-VHM-add-service-to-support-px-data-trans.patch -Patch0525: 0525-sos-sync-common-header-file.patch -Patch0526: 0526-sos_kernel-export-restart-vm-function-to.patch -Patch0527: 0527-VHM-add-service-to-support-cx-data-trans.patch -Patch0528: 0528-vhm-add-set_memmaps-hypercall-support.patch -Patch0529: 0529-vhm-use-set-memmaps-hypercall-for-hugetl.patch -Patch0530: 0530-vhm-prepare-future-update-for-struct-vm_.patch -Patch0531: 0531-VHM-bug-fix-on-operating-multi-thread-sy.patch -Patch0532: 0532-vhm-add-hypercall-to-set-sstate-data.patch -Patch0533: 0533-VHM-Update-cpu-id-type-as-uint16_t-for-s.patch -Patch0534: 0534-vhm-add-sos-offline-cpu-support.patch -Patch0535: 0535-vhm-Fix-kernel-doc-issues.patch -Patch0536: 0536-vhm-add-trusty-init-de-init-support.patch -Patch0537: 0537-vhm-Rename-the-restart_vm-to-reset_vm.patch -Patch0538: 0538-vhm-fix-kerneldoc-format.patch -Patch0539: 0539-sos-vhm-remove-set-guest-memory-map-by-C.patch -Patch0540: 0540-sos-vhm-remove-hugetlb_enabled-flag.patch -Patch0541: 0541-sos-vhm-remove-MAP_MMIO.patch -Patch0542: 0542-vhm-revisit-types-in-structure-parameter.patch -Patch0543: 0543-sos-vhm-add-hcall_write_protect_page-hyp.patch -Patch0544: 0544-sos-vhm-refine-set-memory-region-API.patch -Patch0545: 0545-vhm-remove-re-schedule-for-ioreq-tasklet.patch -Patch0546: 0546-vhm-Add-vcpu_num-to-record-vcpu-number-o.patch -Patch0547: 0547-vhm-mark-pending-ioreqs-in-bitmap-then-d.patch -Patch0548: 0548-vhm-use-correct-string-length.patch -Patch0549: 0549-vhm-adapt-to-the-new-state-transition-of.patch -Patch0550: 0550-vhm-Add-error-handling-for-IC_CREATE_VM-.patch -Patch0551: 0551-vhm-setup-ioreq-shared-buf-in-IC_CREATE_.patch -Patch0552: 0552-VBS-K-add-virtio_dev_reset.patch -Patch0553: 0553-VBS-K-Check-whether-vhm_client_id-is-val.patch -Patch0554: 0554-VBS-K-add-reset-support-for-vbs_rng.patch -Patch0555: 0555-VBS-K-fix-a-bug-due-to-incorrect-check-o.patch -Patch0556: 0556-VHM-remove-panic-action-when-ioreq-fails.patch -Patch0557: 0557-vbs-fix-virtio_vq_index_get-func-handlin.patch -Patch0558: 0558-vhm-init-client-kthread_exit-true.patch -Patch0559: 0559-vhm-fix-client-use-after-free.patch -Patch0560: 0560-Adds-new-API-for-unmap-memseg.patch -Patch0561: 0561-sos-vhm-add-HC_SETUP_HV_NPK_LOG-hypercal.patch -Patch0562: 0562-acrn-add-hv_npk_log-module.patch -Patch0563: 0563-Adding-kernel-parameter-for-forcing-xapi.patch -Patch0564: 0564-VHM-Add-EXPORT_SYMBOL-for-VHM-API-functi.patch -Patch0565: 0565-vhm-deinit-trusty-after-hcall_destroy_vm.patch -Patch0566: 0566-VHM-add-ioctl-hypercall-for-UOS-intr-dat.patch -Patch0567: 0567-vhm-enable-Werror-while-compiling-vhm-vb.patch -Patch0568: 0568-vhm-change-trace_printk-of-vhm_dev_ioctl.patch -Patch0569: 0569-vhm-add-ioeventfd-support-for-ACRN-hyper.patch -Patch0570: 0570-vhm-add-irqfd-support-for-ACRN-hyperviso.patch -Patch0571: 0571-vhm-add-ioctl-for-set-clear-IRQ-line.patch -Patch0572: 0572-sos-vhm-add-hypercall-to-set-guest-vcpu-.patch -Patch0573: 0573-Kernel-Acrn-Use-HYPERVISOR_CALLBACK_VECT.patch -Patch0574: 0574-VHM-Add-one-hypercall-to-configure-the-u.patch -Patch0575: 0575-VHM-Notify-hypervisor-to-switch-the-up-n.patch -Patch0576: 0576-Add-support-for-hypercalls-for-sep-and-s.patch -Patch0577: 0577-Kernel-VHM-Rename-acpi_generic_address-i.patch -Patch0578: 0578-drm-i915-gvt-some-changes-to-support-xen.patch -Patch0579: 0579-drm-i915-gvt-Refactored-BXT-plane-regist.patch -Patch0580: 0580-drm-i915-gvt-passthru-PIPE_DSL-regiser-t.patch -Patch0581: 0581-drm-i915-gvt-local-display-support.patch -Patch0582: 0582-drm-i915-gvt-local-display-support-in-GV.patch -Patch0583: 0583-drm-i915-gvt-Change-DomU-to-support-3-HD.patch -Patch0584: 0584-drm-i915-i915-changes-to-allow-DomU-to-s.patch -Patch0585: 0585-drm-i915-gvt-removed-save-store-register.patch -Patch0586: 0586-drm-i915-gvt-ivi-lazy-shadow-context.patch -Patch0587: 0587-drm-i915-gvt-add-some-MMIO-value-initial.patch -Patch0588: 0588-drm-i915-gvt-added-option-to-disable-wa_.patch -Patch0589: 0589-drm-i915-gvt-enable-ppgtt-oos-sync-by-de.patch -Patch0590: 0590-drm-i915-gvt-emit-shadow-ppgtt-root-in-L.patch -Patch0591: 0591-drm-i915-gvt-Raise-a-uevent-when-Dom-0-i.patch -Patch0592: 0592-drm-i915-gvt-Don-t-load-CSR-for-Dom-U.patch -Patch0593: 0593-drm-i915-gvt-add-acrngt-support.patch -Patch0594: 0594-drm-i915-gvt-hard-code-Pipe-B-plane-owne.patch -Patch0595: 0595-drm-i915-gvt-remove-some-initialization-.patch -Patch0596: 0596-drm-i915-gvt-avoid-unncessary-reset-in-G.patch -Patch0597: 0597-drm-i915-gvt-add-param-disable_gvt_fw_lo.patch -Patch0598: 0598-drm-i915-gvt-inject-error-interrupt-to-D.patch -Patch0599: 0599-drm-i915-gvt-Added-error-interrupt-handl.patch -Patch0600: 0600-drm-i915-gvt-Add-the-support-of-HUC_STAT.patch -Patch0601: 0601-drm-i915-gvt-Add-vgt-id-in-context-id.patch -Patch0602: 0602-drm-i915-gvt-show-pid-hw_id-of-current-D.patch -Patch0603: 0603-drm-i915-gvt-Add-new-trace-point-to-outp.patch -Patch0604: 0604-drm-i915-gvt-preliminary-per-ring-schedu.patch -Patch0605: 0605-drm-i915-gvt-Support-vGPU-guest-framebuf.patch -Patch0606: 0606-drm-i915-gvt-unset-DDI_BUF_CTL_ENABLE-du.patch -Patch0607: 0607-drm-i915-gvt-add-scaler-owner-to-support.patch -Patch0608: 0608-drm-i915-gvt-support-guest-plane-scaling.patch -Patch0609: 0609-drm-i915-gvt-add-module-parameter-enable.patch -Patch0610: 0610-drm-i915-gvt-get-ready-of-memory-for-pvm.patch -Patch0611: 0611-drm-i915-implement-pvmmio-in-guest-i915.patch -Patch0612: 0612-drm-i915-gvt-implement-pvmmio-in-GVTg.patch -Patch0613: 0613-drm-i915-gvt-add-pvmmio-support-in-preem.patch -Patch0614: 0614-drm-i915-Use-64-bit-write-to-optimize-wr.patch -Patch0615: 0615-drm-i915-gvt-don-t-treat-EINVAL-if-trap-.patch -Patch0616: 0616-drm-i915-gvt-pvmmio-optimization-for-pla.patch -Patch0617: 0617-drm-i915-gvt-handling-pvmmio-update-of-p.patch -Patch0618: 0618-drm-i915-gvt-enable-plane-update-pvmmio-.patch -Patch0619: 0619-drm-i915-gvt-implement-gfn_to_mfn-with-i.patch -Patch0620: 0620-drm-i915-gvt-cached-read_gpa-optimizatio.patch -Patch0621: 0621-drm-i915-gvt-add-a-fastpath-for-cmd-pars.patch -Patch0622: 0622-drm-i915-gvt-notify-ppgtt-update-through.patch -Patch0623: 0623-drm-i915-gvt-handle-ppgtt-update-from-g2.patch -Patch0624: 0624-drm-i915-gvt-enable-pv-ppgtt-update-by-d.patch -Patch0625: 0625-drm-i915-gvt-pvmmio-optimization-for-pla.patch -Patch0626: 0626-drm-i915-gvt-handling-pvmmio-update-of-p.patch -Patch0627: 0627-drm-i915-gvt-enable-plane-wm-pvmmio-leve.patch -Patch0628: 0628-drm-i915-gvt-notify-global-gtt-update-th.patch -Patch0629: 0629-drm-i915-gvt-handle-global-gtt-update-fr.patch -Patch0630: 0630-drm-i915-gvt-enable-pv-global-gtt-update.patch -Patch0631: 0631-drm-i915-gvt-Check-the-state-of-PVMMIO-g.patch -Patch0632: 0632-drm-i915-gvt-allocate-ddb-according-to-a.patch -Patch0633: 0633-REVERTME-IOTG-hyper_dmabuf-Introducing-t.patch -Patch0634: 0634-hyper_dmabuf-Enable-hyper_dmabuf-only-on.patch -Patch0635: 0635-hyper_dmabuf-Fix-array-length-check-issu.patch -Patch0636: 0636-kernel-hyper_dmabuf-disable-hyper_dmabuf.patch -Patch0637: 0637-hyper_dmabuf-Remove-void-cast-in-cpu_acc.patch -Patch0638: 0638-hyper_dmabuf-Fix-incorrect-return-in-hyp.patch -Patch0639: 0639-hyper_dmabuf-Check-for-NULL-value-before.patch -Patch0640: 0640-hyper_dmabuf-Remove-unused-variable-warn.patch -Patch0641: 0641-hyper_dmabuf-virtio-Protect-virtqueue-op.patch -Patch0642: 0642-hyper_dmabuf-virtio-Correctly-cleanup-fr.patch -Patch0643: 0643-hyper_dmabuf-virtio-bugfix-on-acrn_ioreq.patch -Patch0644: 0644-hyper_dmabuf-virtio-Add-support-for-VBS_.patch -Patch0645: 0645-hyper_dmabuf-virtio-Handle-S3-resume-cor.patch -Patch0646: 0646-hyper_dmabuf-fix-map-failure-issue-when-.patch -Patch0647: 0647-hyper_dmabuf-fix-compile-warnings-in-hyp.patch -Patch0648: 0648-hyper_dmabuf-virtio-Adapt-to-the-new-sta.patch -Patch0649: 0649-hyper_dmabuf-virtio-Process-ioreq-accord.patch -Patch0650: 0650-hyper_dmabuf-virtio-Fixed-compilation-wa.patch -Patch0651: 0651-hyper_dmabuf-Align-with-dma_buf_ops-chan.patch -Patch0652: 0652-drm-i915-diable-huge-page-ppgtt-when-usi.patch -Patch0653: 0653-INTERNAL-IOTG-drm-i915-Decouple-pipe-and.patch -Patch0654: 0654-INTERNAL-IOTG-drm-Don-t-assume-that-the-.patch -Patch0655: 0655-INTERNAL-IOTG-drm-i915-Introduce-the-Pla.patch -Patch0656: 0656-drm-i915-gvt-make-KBL-also-support-plane.patch -Patch0657: 0657-kernel-drm-i915-Check-the-plane_state-fb.patch -Patch0658: 0658-drm-i915-fix-a-kernel-panic-issue-of-pla.patch -Patch0659: 0659-drm-i915-gvt-ensure-each-pipe-has-a-plan.patch -Patch0660: 0660-drm-i915-to-limit-the-supported-modifier.patch -Patch0661: 0661-drm-i915-Optimize-watermark-calculation-.patch -Patch0662: 0662-drm-i915-gvt-clean-up-the-cfg-space-and-.patch -Patch0663: 0663-drm-i915-gvt-use-plane-size-for-fb-decod.patch -Patch0664: 0664-drm-i915-gvt-Forbid-command-to-access-no.patch -Patch0665: 0665-drm-i915-gvt-Introduce-non-context-MMIO-.patch -Patch0666: 0666-drm-i915-gvt-Enable-guest-conformance-de.patch -Patch0667: 0667-drm-i915-gvt-Add-a-module-parameter-to-d.patch -Patch0668: 0668-drm-i915-gvt-Skip-to-compare-force-nonpr.patch -Patch0669: 0669-drm-i915-gvt-Simply-the-conformance-chec.patch -Patch0670: 0670-drm-i915-Fixed-uninitialized-variable-is.patch -Patch0671: 0671-drm-i915-Check-for-a-valid-fb-when-compu.patch -Patch0672: 0672-upstream-drm-i915-gvt-correct-mask-setti.patch -Patch0673: 0673-drm-i915-gvt-Support-vgpu-workload-prior.patch -Patch0674: 0674-hyper_dmabuf-refine-Kconfig-and-Makefile.patch -Patch0675: 0675-hyper-dmabuf-disable-hyper-dmabuf-on-arc.patch -Patch0676: 0676-drm-i915-gvt-fix-kernel-panic-for-gvtbuf.patch -Patch0677: 0677-drm-i915-gvt-rebase-gvtbuffer-to-use-ups.patch -Patch0678: 0678-drm-i915-gvt-fix-missing-kernel-doc-for-.patch -Patch0679: 0679-drm-i915-gvt-not-to-touch-undefined-MOCS.patch -Patch0680: 0680-drm-i915-gvt-use-snprintf-instead-of-spr.patch -Patch0681: 0681-drm-i915-gvt-check-the-pointer-before-us.patch -Patch0682: 0682-drm-i915-gvt-check-msg-length-before-use.patch -Patch0683: 0683-kernel-remove-deprecated-VHM-IOCTLs.patch -Patch0684: 0684-Fix-warnings-introduced-by-acrn.patch -Patch0685: 0685-drm-i915-gvt-fixed-a-memory-leak-issue-in.patch -Patch0686: 0686-drm-i915-Sysfs-interface-to-get-GFX-shmem-.patch -Patch0687: 0687-drm-i915-Async-work-for-hdcp-authenticatio.patch -Patch0688: 0688-drm-i915-Commit-CP-without-modeset.patch -Patch0689: 0689-MUST_REBASE-IOTG-drm-i915-Allow-late-GuC-H.patch -Patch0690: 0690-drm-i915-Passing-the-intel_connector-to-HD.patch -Patch0691: 0691-drm-Add-CP-downstream_info-property.patch -Patch0692: 0692-drm-Add-CP-System-Renewability-Msg-Propert.patch -Patch0693: 0693-drm-i915-Add-HDCP-SRM-Blob-parsing.patch -Patch0694: 0694-drm-i915-Add-revocation-check-on-Ksvs.patch -Patch0695: 0695-i915-Add-cp_downstream-property.patch -Patch0696: 0696-REVERTME-IOTG-drm-i915-Add-GuC-v9.29-and-H.patch -Patch0697: 0697-drm-i915-Add-interface-to-set-ctm-post-off.patch -Patch0698: 0698-Allow-RenderNode-to-be-used-for-kms-getter.patch -Patch0699: 0699-reboot-add-reboot_panic-parameter.patch -Patch0700: 0700-Debug-Add-register-dump.patch -Patch0701: 0701-stm-class-Rework-policy-node-fallback.patch -Patch0702: 0702-stm-class-Clarify-configfs-root-type-operatio.patch -Patch0703: 0703-stm-class-Clean-up-stp_configfs_init.patch -Patch0704: 0704-stm-class-Introduce-framing-protocol-drivers.patch -Patch0705: 0705-stm-class-Add-a-helper-for-writing-data-packe.patch -Patch0706: 0706-stm-class-Factor-out-default-framing-protocol.patch -Patch0707: 0707-stm-class-Switch-over-to-the-protocol-driver.patch -Patch0708: 0708-stm-class-Add-MIPI-SyS-T-protocol-support.patch -Patch0709: 0709-stm-class-p_sys-t-Add-support-for-CLOCKSYNC-p.patch -Patch0710: 0710-stm-class-p_sys-t-Document-the-configfs-inter.patch -Patch0711: 0711-stm-class-Document-the-MIPI-SyS-T-protocol-us.patch -Patch0712: 0712-stm-class-Update-documentation-to-match-the-n.patch -Patch0713: 0713-stm-class-SPDX-ify-the-documentation.patch -Patch0714: 0714-stm-class-heartbeat-Fix-whitespace.patch -Patch0715: 0715-lib-Add-memcat_p-paste-2-pointer-arrays-toget.patch -Patch0716: 0716-stm-class-Use-memcat_p.patch -Patch0717: 0717-lib-Fix-ia64-bootloader-linkage.patch -Patch0718: 0718-test-configs-use-for-clean-and-android-bare-metal-BA.patch -Patch0719: 0719-platform-x86-add-sep-and-socwatch-drivers-without-so.patch -Patch0720: 0720-Fix-for-socwatch-build-error-that-occurs-if-CONFIG_T.patch -Patch0721: 0721-SEP-some-cleanup.patch -Patch0722: 0722-MUST_REBASE-Enable-plane-decryption-bit.patch -Patch0723: 0723-Revert-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch -Patch0724: 0724-Revert-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch -Patch0725: 0725-ASoC-Intel-Restore-static-FE-declaration-for-bxt_tdf.patch -Patch0726: 0726-Revert-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch -Patch0727: 0727-Revert-ASoC-tdf8532-add-crit-sections.patch -Patch0728: 0728-media-intel-ipu4-VIRT-Fix-video-buffer-double-free-i.patch -Patch0729: 0729-ipu-virtio-Null-ptr-check-of-intel_ipu4_virtio_msg_p.patch -Patch0730: 0730-drm-i915-gvt-fix-array-index-mismatch-issue.patch -Patch0731: 0731-drm-i915-gvt-add-plane-rotation-support-for-90-180-a.patch -Patch0732: 0732-ipu-Fix-double-free-and-firmware-loading-issues.patch -Patch0733: 0733-drm-i915-Add-missing-decryption-bit-impleme.patch -Patch0734: 0734-igb_avb-remove-the-unnecessary-exclusive-of.patch -Patch0735: 0735-ASoC-Intel-Skylake-refactor-memory-manageme.patch -Patch0736: 0736-platform-x86-Fix-SEP-driver-license-header-.patch -Patch0737: 0737-Revert-Fix-for-cbc-kernel-driver-crash-duri.patch -Patch0738: 0738-Revert-cbc-Avoid-rx-sequence-counter-mismat.patch -Patch0739: 0739-Revert-Integration-of-CBC-line-discipline-k.patch -Patch0740: 0740-Integration-of-CBC-line-discipline-kernel-m.patch -Patch0741: 0741-cbc-Avoid-rx-sequence-counter-mismatch-warn.patch -Patch0742: 0742-Fix-for-cbc-kernel-driver-crash-during-warm.patch -Patch0743: 0743-Fix-the-race-in-cbc-buffer-queue.patch -Patch0744: 0744-v4.19.5-update-fixup-smack_lsm.c.patch -Patch0745: 0745-v4.19.5-update-fix-up-intel_display.c.patch -Patch0746: 0746-mmc-move-it-earlier-in-drivers-Makefile.patch -Patch0747: 0747-ASoC-Intel-Skylake-Acquire-irq-after-RIRB-allocation.patch -Patch0748: 0748-media-intel-ipu4-ICI-Use-fixed-delay-to-avo.patch -Patch0749: 0749-media-intel-ipu4-VIRT-Add-mutex-to-avoid-ra.patch -Patch0750: 0750-media-intel-ipu4-use-softlink-instead-of-sh.patch -Patch0751: 0751-media-intel-ipu4-refine-ipu_fw_isys_close-m.patch -Patch0752: 0752-igb_avb-fix-kernel-panic-in-S3-process.patch -Patch0753: 0753-panic-add-options-to-print-system-info-when.patch -Patch0754: 0754-media-intel-ipu4-adv7481_hdmi-Fix-S3-resume.patch -Patch0755: 0755-Fix-iommu-dma-memory-mapping-failure.patch -Patch0756: 0756-kernel-Revert-x86-acrn-add-write_msi-pv-ops.patch -Patch0757: 0757-Fixing-doc-build-caused-by-linux-vbs-vbs.h.patch -Patch0758: 0758-SOS-Guest-x2APIC-support-for-SOS.patch -Patch0759: 0759-vhm-Add-ioctl-IC_CLEAR_VM_IOREQ-to-cleanup-.patch -Patch0760: 0760-vhm-mark-ioreq-completed-in-acrn_ioreq_comp.patch -Patch0761: 0761-vhm-support-polling-mode-of-ioreq-completio.patch -Patch0762: 0762-HVLog-Fix-typo-and-refine-sbuf_hvlog_index.patch -Patch0763: 0763-vhm-remove-reserve-memory-for-trusty.patch -Patch0764: 0764-VBS-export-vbs-symbols.patch -Patch0765: 0765-drm-i915-gvt-fix-gvtbuffer-ioctl-tile-forma.patch -Patch0766: 0766-drm-i915-gvt-remove-tag-from-vGPU-context-I.patch -Patch0767: 0767-Revert-drm-i915-gvt-hard-code-Pipe-B-plane-.patch -Patch0768: 0768-Kernel-VHM-Use-the-bit_op-to-remove-the-vol.patch -Patch0769: 0769-Kernel-VHM-Use-the-traped-pci_access-addr-b.patch -Patch0770: 0770-kernel-VHM-Fix-race-condition-in-ioreq_clie.patch -Patch0771: 0771-Kernel-VHM-refine-the-refcnt-of-vhm_vm-so-t.patch -Patch0772: 0772-i915-temporarily-disable-a-gem-assert.patch -Patch0773: 0773-i915-make-driver-init-async.patch -Patch0774: 0774-ASoC-Intel-Skylake-Export-skylake-functions.patch -Patch0775: 0775-ASoC-Intel-Skylake-Modify-skl_platform_regi.patch -Patch0776: 0776-ASoC-Intel-Skylake-Add-Kconfig-options-for-.patch -Patch0777: 0777-ASoC-Intel-Skylake-Add-support-for-Virtio-S.patch -Patch0778: 0778-ASoC-Intel-Skylake-Register-virtualization-.patch -Patch0779: 0779-ASoC-Intel-Skylake-Notify-BE-about-stream-u.patch -Patch0780: 0780-ASoC-Intel-Skylake-Workarounds-for-virtuali.patch -Patch0781: 0781-ASoC-Intel-Skylake-Virt-Add-virtualization-.patch -Patch0782: 0782-tc-Add-support-for-configuring-the-taprio-s.patch -Patch0783: 0783-REVERTME-ASoC-Add-error-handling-for-stream.patch -Patch0784: 0784-ASoC-tdf8532-Account-for-critical-sections.patch -Patch0785: 0785-platform-x86-sep-socwatchhv-driver-and-code.patch -Patch0786: 0786-Asoc-Intel-Skylake-display-firmware-name-an.patch -Patch0787: 0787-ASoc-Intel-Skylake-Fix-build-issue-in-skl-v.patch -Patch0788: 0788-VHM-Check-null-pointer-of-vhm_req-before-up.patch -Patch0789: 0789-vhm-Correct-the-parameters-usage-in-find_ne.patch -Patch0790: 0790-kernel-VHM-Add-the-vm-owner-for-each-ioreq_.patch -Patch0791: 0791-Kernel-VHM-VM_list-changes-the-lock-from-mu.patch -Patch0792: 0792-Kernel-VHM-Refine-the-usage-of-spinlock-in-.patch -Patch0793: 0793-drm-i915-gvt-emulate-correct-state-of-SKL_F.patch -Patch0794: 0794-VBS-K-use-kernel-virtio-header-files.patch -Patch0795: 0795-virtio_blk-add-discard-and-write-zeroes-sup.patch -Patch0796: 0796-ASoc-Intel-Skylake-Pass-correct-parameter-t.patch -Patch0797: 0797-mei-virtio-fix-queue-flush-with-non-empty-v.patch -Patch0798: 0798-mei-dal-fix-race-in-bh_request-completion.patch -Patch0799: 0799-mei-dal-fix-a-race-in-bh_request.patch -Patch0800: 0800-rcu-Do-RCU-GP-kthread-self-wakeup-from-soft.patch -Patch0801: 0801-drm-i915-execlists-Force-preemption-via-res.patch -Patch0802: 0802-drm-i915-execlists-Try-preempt-reset-from-h.patch -Patch0803: 0803-drm-i915-preemption-Select-timeout-when-sch.patch -Patch0804: 0804-drm-i915-Use-a-preemption-timeout-to-enforc.patch -Patch0805: 0805-drm-i915-Allow-user-control-over-preempt-ti.patch -Patch0806: 0806-media-intel-ipu4-add-timestamp-info-in-driv.patch -Patch0807: 0807-media-ov2775-Update-v4l2-ctrl-setting.patch -Patch0808: 0808-media-Buttress-base-addr-interface.patch -Patch0809: 0809-media-intel-ipu4-ox03a10-set-hflip-default.patch -Patch0810: 0810-media-intel-ipu4-magna-Modify-for-dual-magn.patch -Patch0811: 0811-media-ov2775-update-register-setting.patch -Patch0812: 0812-media-intel-ipu4-be-soc-Set-NV16-input-form.patch -Patch0813: 0813-media-ti964-pdata-for-AS_1140.patch -Patch0814: 0814-media-ti964-add-magna-subdev-for-2nd-ti964.patch -Patch0815: 0815-media-intel-ipu4-css-scci_IPU4_master_20181.patch -Patch0816: 0816-media-intel-ipu4-css-scci_IPU4_master_20181.patch -Patch0817: 0817-media-intel-ipu4-fix-build-warning.patch -Patch0818: 0818-media-intel-ipu4-VIRT-Use-pointer-for-sync-.patch -Patch0819: 0819-media-intel-ipu4-VIRT-Psys-mediation-stub-p.patch -Patch0820: 0820-media-intel-ipu4-VIRT-Psys-mediation-connec.patch -Patch0821: 0821-media-intel-ipu4-VIRT-Support-for-PSYS-BE.patch -Patch0822: 0822-media-intel-ipu4-VIRT-Add-support-for-getbu.patch -Patch0823: 0823-media-intel-ipu4-VIRT-Add-support-for-dqeve.patch -Patch0824: 0824-media-intel-ipu4-VIRT-Add-support-for-IPU_I.patch -Patch0825: 0825-media-intel-ipu4-VIRT-Add-32-bits-IOTCL-sup.patch -Patch0826: 0826-media-intel-ipu4-VIRT-Add-class_create-for-.patch -Patch0827: 0827-media-intel-ipu4-VIRT-Fix-1st-run-hang-and-.patch -Patch0828: 0828-media-intel-ipu4-VIRT-Move-the-PYSY-buffer-.patch -Patch0829: 0829-media-intel-ipu4-VIRT-Use-actual-object-siz.patch -Patch0830: 0830-media-intel-ipu4-VIRT-Add-timeout-to-front-.patch -Patch0831: 0831-media-intel-ipu4-VIRT-Fixed-function-exit-t.patch -Patch0832: 0832-media-intel-ipu4-VIRT-Use-native-driver-fun.patch -Patch0833: 0833-media-ici-Change-value-of-ICI_FORMAT_RGB565.patch -Patch0834: 0834-media-intel-ipu4-VIRT-Fix-PSYS-2-PG-operati.patch -Patch0835: 0835-media-ici-Change-ici_isys_pixelformat-param.patch -Patch0836: 0836-media-intel-ipu4-ICI-Fix-putbuf-list-and-ge.patch -Patch0837: 0837-media-ipu4-add-virtio-depends-for-ipu-virti.patch -Patch0838: 0838-media-intel-ipu4-VIRT-Support-for-IPU-ACRN-.patch -Patch0839: 0839-drm-i915-gvt-fix-kernel-panic-when-fail-to-.patch -Patch0840: 0840-vhm-fix-audio-backend-module-handle-ioreq-i.patch -Patch0841: 0841-drm-i915-gvt-force-to-active-the-high-perfo.patch -Patch0842: 0842-igb_avb-back-port-an-upstream-patch-and-add.patch -Patch0843: 0843-ASoC-Intel-boards-Update-aliases-for-TDF-ma.patch -Patch0844: 0844-drm-i915-Not-wait-for-fuse-registers-in-gue.patch -Patch0845: 0845-media-i2c-ti964-ICI-Enabling-TI964-deser-an.patch -Patch0846: 0846-media-ici-Change-total-BE_STREAMS-and-MAX_S.patch -Patch0847: 0847-media-i2c-crlmodule-lite-Remove-unused-vari.patch -Patch0848: 0848-media-intel-ipu4-VIRT-Release-ISYS-buffer-d.patch -Patch0849: 0849-media-intel-ipu4-ICI-get-virtual-I2C-ID-dyn.patch -Patch0850: 0850-media-intel-ipu4-ICI-Fix-cvbs-image-quality.patch -Patch0851: 0851-media-intel-ipu4-ICI-Fix-sometimes-FW-faile.patch -Patch0852: 0852-media-intel-ipu4-VIRT-Fix-ipu_psys_getbuf-f.patch -Patch0853: 0853-media-i2c-pci-Reduce-log-level.patch -Patch0854: 0854-media-ici-Add-handler-to-clear-dma-mapped-b.patch -Patch0855: 0855-media-intel-ipu4-ICI-MAX9286-and-AR0231AT-e.patch -Patch0856: 0856-media-i2c-Fix-for-warnings-for-max9286_ici-.patch -Patch0857: 0857-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch -Patch0858: 0858-media-intel-ipu4-ICI-Workaround-to-force-co.patch -Patch0859: 0859-Revert-igb_avb-back-port-an-upstream-patch-.patch -Patch0860: 0860-drm-i915-gvt-allocate-memory-for-vreg-mmio-.patch -Patch0861: 0861-Security-improvement-for-depressing-compile.patch -Patch0862: 0862-platform-x86-Change-struct-fields-to-16-bit.patch -Patch0863: 0863-drm-i915-gvt-Get-Port-ID-from-the-encoder-o.patch -Patch0864: 0864-drivers-hyper_dmabuf-Reuse-the-exported-dma.patch -Patch0865: 0865-drivers-hyper_dmabuf-Remove-the-imported-dm.patch -Patch0866: 0866-drivers-hyper_dmabuf-Remove-from-imported_l.patch -Patch0867: 0867-Security-Fix-copy-wrong-size-of-keystore-cl.patch -Patch0868: 0868-Bug-Fix-to-fix-incorrect-osid-value.patch -Patch0869: 0869-media-intel-ipu4-VIRT-Avoid-double-close-of.patch -Patch0870: 0870-media-intel-ipu4-VIRT-Increase-the-POLL_WAI.patch -Patch0871: 0871-intel-ipu4-ici-Move-empty-list-check-into-s.patch -Patch0872: 0872-drm-Add-per-plane-pixel-blend-mode-property.patch -Patch0873: 0873-drm-i915-Add-plane-alpha-blending-support-v.patch -Patch0874: 0874-igb_avb-Fix-invalid-memory-access-after-S3-.patch -Patch0875: 0875-drm-i915-Introduce-initial-mode-setting.patch -Patch0876: 0876-keystore-fix-memory-leaks.patch -Patch0877: 0877-keystore-fix-missing-break.patch -Patch0878: 0878-keystore-add-application-authentication-fea.patch -Patch0879: 0879-Revert-drm-i915-Add-plane-alpha-blending-su.patch -Patch0880: 0880-Revert-drm-Add-per-plane-pixel-blend-mode-p.patch -Patch0881: 0881-ASoC-Intel-Skylake-Add-FE-and-BE-DAIs-for-U.patch -Patch0882: 0882-Revert-ASoC-Intel-board-Add-support-for-FE-.patch -Patch0883: 0883-ASoC-Intel-board-Update-BXT-P-ULL-machine-d.patch -Patch0884: 0884-media-intel-ipu4-ICI-start-stream-with-corr.patch -Patch0885: 0885-media-intel-ipu4-ICI-Reorder-mutex-lock-of-.patch -Patch0886: 0886-ASoC-Skl-Virt-Fix-incorrect-virt-msg-respon.patch -Patch0887: 0887-ASoC-Skl-Virt-Add-locks-to-virtqueue-relate.patch -Patch0888: 0888-ASoC-Skl-Virt-Add-locks-to-substreams-list.patch -Patch0889: 0889-ASoC-Skl-Virt-Handle-timed-out-message-repl.patch -Patch0890: 0890-trusty-Add-trusty-driver.patch -Patch0891: 0891-trusty-Add-notifier-before-and-after-every-.patch -Patch0892: 0892-trusty-Get-version-string-from-trusty.patch -Patch0893: 0893-trusty-Add-interrupt-support.patch -Patch0894: 0894-trusty-Add-fiq-support.patch -Patch0895: 0895-trusty-arm64-fiq-support.patch -Patch0896: 0896-trusty-fiq-arm64-Allow-multiple-fiq-handler.patch -Patch0897: 0897-trusty-Add-trusty-logging-driver.patch -Patch0898: 0898-trusty-add-couple-non-secure-memory-related.patch -Patch0899: 0899-trusty-add-trusty-virtio-driver.patch -Patch0900: 0900-trusty-add-trusty-ipc-driver.patch -Patch0901: 0901-trusty-Select-api-version.patch -Patch0902: 0902-trusty-Handle-fiqs-without-calling-notifier.patch -Patch0903: 0903-trusty-Add-smp-support.patch -Patch0904: 0904-trusty-irq-Add-support-for-secure-interrupt.patch -Patch0905: 0905-Modify-the-static-analysis-errors-for-googl.patch -Patch0906: 0906-Modify-Google-s-trusty-drivers-so-as-to-sup.patch -Patch0907: 0907-Fix-the-issue-for-tipc-test-case-closer1.patch -Patch0908: 0908-trusty-implement-trusty-OS-timer-proxy-for-.patch -Patch0909: 0909-Replace-CPU_STARTING-CPU_DYING-with-CPU_UP_.patch -Patch0910: 0910-trusty-fix-incompatible-pointer-types.patch -Patch0911: 0911-trusty-move-async-works-off-system-workqueu.patch -Patch0912: 0912-trusty-print-out-Built-in-kernel-directly.patch -Patch0913: 0913-trusty-Popup-warning-when-LK-timer-interrup.patch -Patch0914: 0914-trusty-log-Add-vmm-panic-notifier-for-vmm-d.patch -Patch0915: 0915-trusty-fix-rcu_preempt-soft-lockup-crash-is.patch -Patch0916: 0916-trusty-Add-VMM-PANIC-dump-data.patch -Patch0917: 0917-Modify-Trusty-drivers-so-as-to-compatible-w.patch -Patch0918: 0918-Limit-to-output-trusty-lk-log-on-debug-vers.patch -Patch0919: 0919-trusty-ipc-tipc_msg_hdr-structure-support-l.patch -Patch0920: 0920-trusty-ipc-change-DEFAULT_MSG_BUF_SIZE-to-6.patch -Patch0921: 0921-check-CPUID-while-probe-trusty-drivers.patch -Patch0922: 0922-Fix-the-compile-error-when-update-4.12.patch -Patch0923: 0923-trusty-Fix-the-warnings-for-eywa-building.patch -Patch0924: 0924-trusty-Enable-dynamic-timer.patch -Patch0925: 0925-check-vmm-signature-for-vmm-dump.patch -Patch0926: 0926-Revert-BXT-DYNAMIC-TIMER-Enable-dynamic-tim.patch -Patch0927: 0927-Revert-trusty-implement-trusty-OS-timer-pro.patch -Patch0928: 0928-trusty-add-support-for-parameterized-NOP-op.patch -Patch0929: 0929-trusty-switch-to-use-version-3-of-TRUSTY_AP.patch -Patch0930: 0930-trusty-add-support-for-SM-Wall-object.patch -Patch0931: 0931-trusty-add-support-for-trusty-backup-timer.patch -Patch0932: 0932-trusty-kernel-driver-code-refine.patch -Patch0933: 0933-Change-Trusty-Kconfig-to-build-for-X86-Arch.patch -Patch0934: 0934-trusty-Add-null-check-pointer-before-defere.patch -Patch0935: 0935-trusty-Check-if-eVmm-is-available-before-in.patch -Patch0936: 0936-trusty-Update-Trusty-timer-solution.patch -Patch0937: 0937-trusty-detect-vmm-when-load-trusty-driver.patch -Patch0938: 0938-Remove-unused-label-to-depress-compile-warn.patch -Patch0939: 0939-trusty-Update-dependency-of-trusty-module.patch -Patch0940: 0940-trusty-Rename-CWP-with-ACRN.patch -Patch0941: 0941-trusty-add-RAX-into-clobber-list-of-inline-.patch -Patch0942: 0942-trusty-Update-macro-SMC_FC_GET_WALL_SIZE-fr.patch -Patch0943: 0943-unify-trusty-driver.patch -Patch0944: 0944-Revert-trusty-ipc-change-DEFAULT_MSG_BUF_SI.patch -Patch0945: 0945-refine-work-queue-in-trusty-driver.patch -Patch0946: 0946-register-suspend-callback.patch -Patch0947: 0947-Fix-compile-warning-from-ISO90-and-output-f.patch -Patch0948: 0948-check-return-value-of-hypercall.patch -Patch0949: 0949-Fix-compilation-errors-when-rebase-to-v4.19.patch -Patch0950: 0950-VHM-Add-one-hypercall-to-query-hardware-inf.patch -Patch0951: 0951-HVLog-Refine-acrn_hvlog-to-remove-the-limit.patch -Patch0952: 0952-ACRNTrace-Refine-acrn-trace-module-to-remov.patch -Patch0953: 0953-kernel-Sync-the-common-header-file.patch -Patch0954: 0954-vhm-remove-the-flooding-log-from-vhm.patch -Patch0955: 0955-media-intel-ipu4-VIRT-Increase-wait-time.patch -Patch0956: 0956-media-intel-ipu4-VIRT-Clean-up-SOS-states-a.patch -Patch0957: 0957-media-intel-ipu4-fix-v4l2_g_ext_ctrls-param.patch -Patch0958: 0958-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +Patch0113: 0113-tpm2-add-new-tpm2-commands-according-to-TC.patch +Patch0114: 0114-tpm-sort-objects-in-the-Makefile.patch +Patch0115: 0115-tpm-factor-out-tpm-1.x-duration-calculatio.patch +Patch0116: 0116-tpm-add-tpm_calc_ordinal_duration-wrapper.patch +Patch0117: 0117-tpm-factor-out-tpm_get_timeouts.patch +Patch0118: 0118-tpm-move-tpm1_pcr_extend-to-tpm1-cmd.c.patch +Patch0119: 0119-tpm-move-tpm_getcap-to-tpm1-cmd.c.patch +Patch0120: 0120-tpm-factor-out-tpm1_get_random-into-tpm1-c.patch +Patch0121: 0121-tpm-move-tpm-1.x-selftest-code-from-tpm-in.patch +Patch0122: 0122-tpm-factor-out-tpm-1.x-pm-suspend-flow-int.patch +Patch0123: 0123-tpm-factor-out-tpm_startup-function.patch +Patch0124: 0124-tpm-add-tpm_auto_startup-into-tpm-interfac.patch +Patch0125: 0125-tpm-tpm-interface.c-drop-unused-macros.patch +Patch0126: 0126-tpm-tpm-space.c-remove-unneeded-semicolon.patch +Patch0127: 0127-tpm-tpm1-rewrite-tpm1_get_random-using-tpm.patch +Patch0128: 0128-tpm1-implement-tpm1_pcr_read_dev-using-tpm.patch +Patch0129: 0129-tmp1-rename-tpm1_pcr_read_dev-to-tpm1_pcr_.patch +Patch0130: 0130-tpm1-reimplement-SAVESTATE-using-tpm_buf.patch +Patch0131: 0131-tpm1-reimplement-tpm1_continue_selftest-us.patch +Patch0132: 0132-tpm-use-u32-instead-of-int-for-PCR-index.patch +Patch0133: 0133-tpm-fix-kdoc-for-tpm2_flush_context_cmd.patch +Patch0134: 0134-misc-remove-redundant-include-moduleparam..patch +Patch0135: 0135-mei-replace-POLL-with-EPOLL-for-write-queu.patch +Patch0136: 0136-mei-hbm-drop-BUG-from-the-hbm-handler.patch +Patch0137: 0137-mei-flush-queues-by-the-host-client-only.patch +Patch0138: 0138-mei-bus-export-to_mei_cl_device-for-mei-cl.patch +Patch0139: 0139-mei-expedite-ioctl-return-on-the-notify-se.patch +Patch0140: 0140-mei-dma-ring-buffers-allocation.patch +Patch0141: 0141-mei-hbm-setup-dma-ring.patch +Patch0142: 0142-mei-hw-add-dma-ring-control-block.patch +Patch0143: 0143-mei-dma-ring-implement-rx-circular-buffer-.patch +Patch0144: 0144-mei-dma-ring-implement-transmit-flow.patch +Patch0145: 0145-mei-bump-hbm-version-to-2.1.patch +Patch0146: 0146-mei-me-mark-CNP-devices-as-having-dma-supp.patch +Patch0147: 0147-mei-squash-single_recv_buf-into-one-bit-in.patch +Patch0148: 0148-mei-restrict-vm-tag-support-to-hbm-version.patch +Patch0149: 0149-mei-hbm-add-capabilities-message.patch +Patch0150: 0150-mei-add-extended-header.patch +Patch0151: 0151-mei-add-vtag-support-bit-in-client-propert.patch +Patch0152: 0152-mei-bump-hbm-version-to-2.2.patch +Patch0153: 0153-mei-add-a-spin-lock-to-protect-rd_complete.patch +Patch0154: 0154-mei-add-connect-with-vtag-ioctl.patch +Patch0155: 0155-mei-keep-pending-read-on-one-client-discon.patch +Patch0156: 0156-mei-flush-only-objects-belonging-to-fp-in-.patch +Patch0157: 0157-mei-free-read-cb-on-ctrl_wr-list-flush.patch +Patch0158: 0158-mei-bus-use-zero-vtag-for-bus-clients.patch +Patch0159: 0159-mei-expose-device-state-in-sysfs.patch +Patch0160: 0160-mei-bus-add-more-client-attributes-to-sysf.patch +Patch0161: 0161-mei-bus-unconditionally-enable-clients-wit.patch +Patch0162: 0162-mei-virtio-V13-virtualization-frontend-dri.patch +Patch0163: 0163-mei-dal-add-acp-parser-code.patch +Patch0164: 0164-mei-dal-add-bh-plugin-code.patch +Patch0165: 0165-mei-dal-dynamic-application-loader.patch +Patch0166: 0166-mei-dal-add-character-device-for-user-spac.patch +Patch0167: 0167-mei-dal-add-kernel-space-interface.patch +Patch0168: 0168-mei-dal-add-exclusive-access-menagement.patch +Patch0169: 0169-mei-dal-add-module-Documentation.patch +Patch0170: 0170-mei-dal-add-test-module.patch +Patch0171: 0171-security-add-keystore-driver-support.patch +Patch0172: 0172-ACPI-battery-use-cache_time-as-cache-enabled.patch +Patch0173: 0173-FOR-CNL-FPGA-Add-support-for-CNL-FPGA.patch +Patch0174: 0174-FOR-CNL-FPGA-Load-nhlt-from-firmware-instead-.patch +Patch0175: 0175-FOR-CNL-FPGA-Add-facility-to-load-ROM-via-deb.patch +Patch0176: 0176-FOR-CNL-FPGA-ASoC-mfd-Intel-changes-for-WM828.patch +Patch0177: 0177-ASoC-Intel-Add-CNL-Machine-Driver-with-code-w.patch +Patch0178: 0178-FPGA-ASoC-rt274-Force-load-rt274-without-acpi.patch +Patch0179: 0179-ASoC-HDA-EXT-Mark-dma-buffers-as-un-cacheble.patch +Patch0180: 0180-ASoC-intel-skylake-mark-ring-buffer-as-non-ca.patch +Patch0181: 0181-REVERTME-ASoC-Intel-CNL-Load-firmware-in-dsp_.patch +Patch0182: 0182-ASoC-Intel-CNL-Add-library-loading-support.patch +Patch0183: 0183-Soundwire-squashed-commits.patch +Patch0184: 0184-ASoC-Add-dai_ops-to-set-the-stream-tag.patch +Patch0185: 0185-ASoC-CNL-Register-soundwire-controller-to-bus.patch +Patch0186: 0186-ASoC-Intel-Add-support-for-SoundWire-link-in-.patch +Patch0187: 0187-ASoC-Intel-Skylake-Interface-change-between-f.patch +Patch0188: 0188-ASoC-Intel-Add-support-to-bypass-NHLT-reading.patch +Patch0189: 0189-ASoC-Intel-Skylake-Add-support-for-the-SDW-da.patch +Patch0190: 0190-ASoC-CNL-Add-SoundWire-machine-file.patch +Patch0191: 0191-SoundWire-Intel-Register-4-master-controller-.patch +Patch0192: 0192-REVERTME-SDW-CNL-Register-only-3-master-contr.patch +Patch0193: 0193-ASoC-CNL-Add-support-for-DMIC-link-in-SDW-mac.patch +Patch0194: 0194-ASoC-SKL-Add-DAI-for-the-SoundWire-PDM-interf.patch +Patch0195: 0195-Intel-ASoc-Handle-SDW-PCM-hw_params-for-PDM.patch +Patch0196: 0196-ASoC-Codecs-Add-support-for-SV-FPGA-SoundWire.patch +Patch0197: 0197-ASoC-Intel-Add-machine-driver-for-SoundWire-S.patch +Patch0198: 0198-REVERTME-SoundWire-Hardcoding-in-bus-driver-f.patch +Patch0199: 0199-SDW-Intel-Fix-hardcoding-for-SVFPGA-codec.patch +Patch0200: 0200-REVERTME-SDW-Increment-the-dev_id-for-every-s.patch +Patch0201: 0201-SDW-Support-async-messages-for-bus-driver.patch +Patch0202: 0202-SDW-Change-log-level-to-error-from-debug.patch +Patch0203: 0203-SDW-Intel-Enabled-the-Multimode-for-Intel-SDW.patch +Patch0204: 0204-SDW-Intel-Add-the-handler-for-async-message-t.patch +Patch0205: 0205-SDW-CNL-Fix-the-syncgo-functionality.patch +Patch0206: 0206-SoundWire-Remove-dead-code-from-SoundWire-BW-.patch +Patch0207: 0207-REVERTME-SDW-Skip-the-Slave-programming-for-t.patch +Patch0208: 0208-SoundWire-Add-support-for-the-aggregation.patch +Patch0209: 0209-REVERTME-ASoC-CNL-Mark-SDW-master-1-and-2-as-.patch +Patch0210: 0210-ASoC-CNL-Update-capabilities-fields-of-SDW-ma.patch +Patch0211: 0211-ASoC-CNL-Add-support-for-aggregated-gateways.patch +Patch0212: 0212-ASoC-CNL-Add-DAIS-for-SoundWire-masters.patch +Patch0213: 0213-ASoC-core-Adds-support-for-DSP-loopback-dai-l.patch +Patch0214: 0214-WORKAROUND-ASoC-dapm-fix-stream-directions-fo.patch +Patch0215: 0215-ASoC-utils-add-inputs-and-outputs-to-dummy-co.patch +Patch0216: 0216-ASoC-core-Do-not-return-for-dummy-codec-in-so.patch +Patch0217: 0217-ASoC-SKL-Fix-ch_cfg-when-fixup-is-applied.patch +Patch0218: 0218-ASoC-Intel-Skylake-Add-NHLT-override-control.patch +Patch0219: 0219-ASoC-Intel-Skylake-Add-debugfs-NHLT-ssp-overr.patch +Patch0220: 0220-ASoC-Intel-Skylake-Add-debugfs-NHLT-dmic-over.patch +Patch0221: 0221-ASoC-Intel-Skylake-Read-blobs-from-debugfs-on.patch +Patch0222: 0222-ASoC-Intel-Skylake-NHLT-override-check-cfg-si.patch +Patch0223: 0223-ASoC-Intel-Skylake-add-ssp-blob-override-supp.patch +Patch0224: 0224-WORKAROUND-Remove-size-check-for-DMIC-blob.patch +Patch0225: 0225-REVERTME-SKL-Topology-Add-logic-to-create-SDW.patch +Patch0226: 0226-SKL-PCM-Derive-the-SDW-master-controller-numb.patch +Patch0227: 0227-REVERTME-SKL-PCM-Enable-aggregation-for-the-M.patch +Patch0228: 0228-ASoC-Intel-Skylake-Driver-ring-buffer-APIs-fo.patch +Patch0229: 0229-ASoC-Intel-Skylake-Handler-for-firmware-log-b.patch +Patch0230: 0230-ASoC-Intel-Skylake-Compress-ops-for-firmware-.patch +Patch0231: 0231-ASoC-Intel-Skylake-Check-buffer-users-and-pre.patch +Patch0232: 0232-ASoC-Intel-Skylake-Wake-up-any-potential-read.patch +Patch0233: 0233-ASoC-Intel-Skylake-Convert-buffer-size-to-of-.patch +Patch0234: 0234-ASoC-Intel-CNL-Initialize-trace-buffer-window.patch +Patch0235: 0235-ASoC-Intel-Skylake-Add-trace-buffer-dais-for-.patch +Patch0236: 0236-REVERTME-1-Revert-when-logging-is-updated-in-.patch +Patch0237: 0237-ASoC-Intel-Skylake-Add-dsp-log-level-selectio.patch +Patch0238: 0238-ASoC-Intel-CNL-Enable-SDW-aggregation-support.patch +Patch0239: 0239-ASoC-Intel-SKL-Remove-SDW-aggregation-hardcod.patch +Patch0240: 0240-ASoC-Intel-Aggregation-fixes-for-masters-othe.patch +Patch0241: 0241-ASoC-Fix-TLV-control-size-in-TLV-handler.patch +Patch0242: 0242-ALSA-hda-Enhance-HD-audio-framework-to-suppor.patch +Patch0243: 0243-ALSA-hda-Service-buffer-completed-interrupts-.patch +Patch0244: 0244-ASoC-Intel-Add-delete-module-IPC.patch +Patch0245: 0245-ASoC-Intel-Add-Probe-compress-APIs.patch +Patch0246: 0246-ASoC-Intel-Skylake-KW-fixes-for-probe-feature.patch +Patch0247: 0247-ASoC-Intel-Skylake-Probe-Start-DMA-before-set.patch +Patch0248: 0248-ASoC-Intel-Skylake-Probe-Limit-the-bytes-to-c.patch +Patch0249: 0249-ASoC-Intel-Skylake-Probe-Increase-the-DMA-buf.patch +Patch0250: 0250-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch +Patch0251: 0251-ASoC-Intel-Skylake-Probe-Increase-Injector-DM.patch +Patch0252: 0252-Soundwire-squashed-commits-2.patch +Patch0253: 0253-ALSA-core-let-low-level-driver-or-userspace-d.patch +Patch0254: 0254-ALSA-pcm-conditionally-avoid-mmap-of-control-.patch +Patch0255: 0255-ALSA-hda-ext-add-spib-to-stream-context.patch +Patch0256: 0256-ASoC-Intel-Skylake-add-support-for-spib-mode.patch +Patch0257: 0257-ASoC-Intel-CNL-Fetch-ACPI-data-for-SoundWire-.patch +Patch0258: 0258-ASoC-Intel-CNL-get-SoundWire-Master-capabilit.patch +Patch0259: 0259-REVERTME-ASoC-Intel-CNL-Define-DPN-package-fo.patch +Patch0260: 0260-ASoC-Intel-Skylake-Support-for-24KHz-SoC-DMIC.patch +Patch0261: 0261-ASoC-add-rt700-codec-driver.patch +Patch0262: 0262-ASoC-Intel-Add-support-for-ALC700-machine-dri.patch +Patch0263: 0263-ASoC-Intel-CNL-Add-new-BE-dai-for-ALC701-HS-p.patch +Patch0264: 0264-ASoC-Intel-CNL-Enable-sdw-interrupt-during-D0.patch +Patch0265: 0265-ASoC-Intel-Skylake-fix-for-large-get-config-a.patch +Patch0266: 0266-ASoC-Intel-Skylake-generic-IPC-message-suppor.patch +Patch0267: 0267-ASoC-Intel-Skylake-Add-support-to-get-fw-conf.patch +Patch0268: 0268-WORKAROUND-Register-masters-only-if-RT700-is-.patch +Patch0269: 0269-WORKAROUND-Add-if-for-platform-codec-name-in-.patch +Patch0270: 0270-REVERTME-ASoC-Intel-CNL-Change-BE-id-to-SDW-M.patch +Patch0271: 0271-ASoC-Intel-CNL-Update-dsp-ops-API-to-take-dir.patch +Patch0272: 0272-ASoC-Intel-CNL-Platform-driver-implementation.patch +Patch0273: 0273-ASoC-Intel-CNL-Register-BRA-ops-in-init.patch +Patch0274: 0274-ASoC-rt700-codec-changes-for-BRA-feature.patch +Patch0275: 0275-ASoC-Intel-Add-support-for-Icelake-IDs.patch +Patch0276: 0276-ASoC-Intel-Fix-build-warning-for-unused-varia.patch +Patch0277: 0277-ASoC-Intel-Fix-Compilation-issues-for-probe-c.patch +Patch0278: 0278-ASoC-Intel-Kconfig-and-Makefile-changes-for-S.patch +Patch0279: 0279-ASoC-Intel-Boards-Add-CNL-RT274-I2S-machine-d.patch +Patch0280: 0280-ASoC-Intel-Modify-Icelake-machine-id-to-use-R.patch +Patch0281: 0281-ASoC-Intel-board-Add-id_table-in-cnl_rt274.patch +Patch0282: 0282-ASoC-Intel-Skylake-Support-for-all-rates-from.patch +Patch0283: 0283-ASoc-rt700-Fix-for-first-playback-and-capture.patch +Patch0284: 0284-ASoC-Intel-Add-SoundWire-aggregation-support.patch +Patch0285: 0285-ASoC-Intel-Skylake-Avoid-resume-capablity-for.patch +Patch0286: 0286-ASoC-Intel-Skylake-Support-all-I2S-ports-with.patch +Patch0287: 0287-ASoC-Intel-Skylake-Add-platform-DAI-for-deepb.patch +Patch0288: 0288-ASoC-Intel-board-Enable-deepbuffer-capture-in.patch +Patch0289: 0289-ASoC-Intel-Add-Icelake-machine-id-to-use-RT70.patch +Patch0290: 0290-ASoC-Intel-Add-Icelake-machine-id-to-use-WM82.patch +Patch0291: 0291-ASoC-Intel-Skylake-Fix-library-name-length.patch +Patch0292: 0292-ASoC-Intel-Skylake-Update-SDW-BRA-interface.patch +Patch0293: 0293-ASoC-Intel-Skylake-Split-dais-and-add-flag-fo.patch +Patch0294: 0294-ASoC-Intel-Skylake-Add-component-ops-for-dai-.patch +Patch0295: 0295-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch +Patch0296: 0296-ASoC-Intel-board-Add-support-for-dynamic-FE-d.patch +Patch0297: 0297-ASoC-Intel-Update-device-type-entry-for-Sound.patch +Patch0298: 0298-ASoC-Intel-Skylake-Use-device-type-to-determi.patch +Patch0299: 0299-ASoC-Intel-Remove-pdi_type-support-from-topol.patch +Patch0300: 0300-ASoC-Intel-Skylake-Define-tokens-for-aggregat.patch +Patch0301: 0301-ASoC-Intel-Skylake-Parse-tokens-to-support-ag.patch +Patch0302: 0302-ASoC-Intel-CNL-Add-DAIs-for-SDW-Aggregation.patch +Patch0303: 0303-ASoC-Intel-Kconfig-changes-for-SoundWire-aggr.patch +Patch0304: 0304-ASoC-rt700-codec-changes-for-SDW-Aggregation.patch +Patch0305: 0305-ASoC-Intel-Boards-Add-SDW-Aggregation-changes.patch +Patch0306: 0306-ASoC-Intel-Change-sst_ipc_tx_message_wait-api.patch +Patch0307: 0307-ASoC-Intel-Skylake-Extract-the-receive-respon.patch +Patch0308: 0308-ASoC-Intel-Skylake-Querying-FW-CONFIG-informa.patch +Patch0309: 0309-ASoC-Intel-Skylake-Parse-the-fw-property.patch +Patch0310: 0310-ASoC-Intel-Skylake-Check-for-memory-reclaim-b.patch +Patch0311: 0311-ASoC-Intel-Skylake-Better-handling-of-stream-.patch +Patch0312: 0312-REVERTME-ASoC-Intel-Skylake-Set-DUM-bit-in-EM.patch +Patch0313: 0313-ASoC-Intel-Skylake-Add-D0i3-support-for-Icela.patch +Patch0314: 0314-ASoC-Intel-Skylake-Audio-format-mismatch-dete.patch +Patch0315: 0315-ASoC-Intel-Skylake-add-sysfs-files-for-firmwa.patch +Patch0316: 0316-ASoC-Intel-Skylake-Append-SDW-device-to-devic.patch +Patch0317: 0317-ASoC-Intel-Skylake-Debugfs-for-core-power-han.patch +Patch0318: 0318-ASoC-Intel-Skylake-DebugFs-changes-to-suit-FD.patch +Patch0319: 0319-ASoC-Intel-Skylake-Support-Pipeline-Propertie.patch +Patch0320: 0320-ASoC-Intel-Skylake-Add-check-for-buffer-overf.patch +Patch0321: 0321-ASoC-Intel-Skylake-Increase-the-SSP-count-in-.patch +Patch0322: 0322-ASoC-Intel-CNL-Retrieve-module-id-from-GUID.patch +Patch0323: 0323-ASoc-rt700-Remove-runtime-get-and-put-from-se.patch +Patch0324: 0324-ASoC-Intel-board-Add-SSP0-codec-codec-link.patch +Patch0325: 0325-ASoC-Intel-board-Move-cnl_rt274-clock-setting.patch +Patch0326: 0326-SoundWire-Select-default-frame-shape-based-on.patch +Patch0327: 0327-ASoC-rt700-Added-support-for-ICL-FPGA-SDW-Agg.patch +Patch0328: 0328-ASoC-Intel-Boards-Add-support-for-ICL-FPGA-SD.patch +Patch0329: 0329-ASoC-Intel-CNL-Add-support-for-ICL-FPGA-SDW-A.patch +Patch0330: 0330-ASoC-Intel-Skylake-Add-support-for-getting-hw.patch +Patch0331: 0331-ASoC-Intel-Skylake-Get-dsp-core-count-from-hw.patch +Patch0332: 0332-ASoC-Intel-Skylake-Add-user-notification-even.patch +Patch0333: 0333-ASoC-Intel-Extract-the-nhlt-version-from-DSDT.patch +Patch0334: 0334-ASoC-Intel-Skylake-Increase-the-max-number-of.patch +Patch0335: 0335-ASoC-Intel-Skylake-Add-single-module-support-.patch +Patch0336: 0336-ASoC-Intel-Skylake-Fix-incorrect-parsing-of-p.patch +Patch0337: 0337-ASoC-Intel-Skylake-Create-SSP-BE-dais-dynamic.patch +Patch0338: 0338-ASoC-Intel-Skylake-Adding-support-for-set-sys.patch +Patch0339: 0339-ASoC-Intel-Skylake-Update-FW-Trace-logs-featu.patch +Patch0340: 0340-ASoC-Intel-Skylake-Fix-FW-logging-data-corrup.patch +Patch0341: 0341-ASoC-Intel-Board-Add-BXTP-MRB-machine-driver-.patch +Patch0342: 0342-ASoC-tdf8532-NXP-TDF8532-audio-class-D-amplif.patch +Patch0343: 0343-ASoC-Intel-Skylake-Added-support-for-creating.patch +Patch0344: 0344-ASoC-Intel-boards-Remove-SSP1-codec-dai-link-.patch +Patch0345: 0345-WORKAROUND-FIX-Kconfigs-to-build-compile-with.patch +Patch0346: 0346-ASoC-Intel-Boards-FW-logging-DAI-links-for-BX.patch +Patch0347: 0347-ASoC-Intel-Board-DAI-links-for-probe-in-APL-m.patch +Patch0348: 0348-ASoC-Intel-Skylake-Probe-sequence-changes-bas.patch +Patch0349: 0349-ASoC-Intel-Skylake-Probe-DMA-release-for-extr.patch +Patch0350: 0350-ASoC-Intel-Multiple-I-O-PCM-format-support-fo.patch +Patch0351: 0351-ASoC-Intel-Skylake-Parse-manifest-data-to-fil.patch +Patch0352: 0352-ASoC-Intel-Skylake-Add-support-for-always-on-.patch +Patch0353: 0353-ASoC-Intel-bxtn-Initialize-fw-tracing-window-.patch +Patch0354: 0354-ASoC-Intel-Board-DAI-links-for-probe-in-GPMRB.patch +Patch0355: 0355-ASoC-Intel-Boards-Add-FW-logging-DAI-links-fo.patch +Patch0356: 0356-ASoC-Intel-Skylake-Send-correct-size-in-ipc-h.patch +Patch0357: 0357-ASoC-Intel-board-Add-support-for-HDMI-in-cnl_.patch +Patch0358: 0358-ASoC-Intel-Skylake-Support-for-DSP-exception-.patch +Patch0359: 0359-ASoC-Intel-board-Separate-out-icl_rt274-from-.patch +Patch0360: 0360-ASoC-Intel-Skylake-Removed-duplicate-IPC-call.patch +Patch0361: 0361-ASoC-Intel-Skylake-Notify-topology-changes.patch +Patch0362: 0362-ASoC-rt700-Remove-unused-variables.patch +Patch0363: 0363-ASoC-rt700-Remove-prints-used-for-debugging.patch +Patch0364: 0364-ASoC-tdf8532-Fix-compilation-warnings.patch +Patch0365: 0365-ASoC-Intel-CNL-Remove-larger-frame-size-warni.patch +Patch0366: 0366-ASoC-Intel-Skylake-Add-support-for-module-not.patch +Patch0367: 0367-ASoC-Intel-Board-Add-pm_ops-to-fix-suspend-re.patch +Patch0368: 0368-ASoC-rt700-Remove-unused-variable.patch +Patch0369: 0369-ASoC-Intel-board-Remove-unused-function-cnl_d.patch +Patch0370: 0370-ASoC-Intel-Skylake-Move-prototype-to-appropri.patch +Patch0371: 0371-ASoC-Intel-cnl-Move-d0i-03-ops-after-cnl_load.patch +Patch0372: 0372-ASoC-Intel-Skylake-Support-for-Probe-DMA-Buff.patch +Patch0373: 0373-ASoC-Intel-Skylake-Add-a-separate-module-type.patch +Patch0374: 0374-ASoC-Intel-Skylake-Add-support-for-DMA-Buffer.patch +Patch0375: 0375-ASoC-Intel-Set-all-I2S-ports-to-slave-mode-af.patch +Patch0376: 0376-ASoC-Intel-Skylake-Return-default-sampling-ra.patch +Patch0377: 0377-ASoC-Intel-Board-Add-fixup-for-32-bit-masking.patch +Patch0378: 0378-ASoC-Intel-Skylake-Add-support-for-GAIN-modul.patch +Patch0379: 0379-ASoC-Intel-Skylake-Fix-codec_dai-NULL-pointer.patch +Patch0380: 0380-ASoC-Intel-Skylake-Check-for-word_length_buff.patch +Patch0381: 0381-ASoC-Intel-Skylake-Fix-cnl_sdw_startup-error-.patch +Patch0382: 0382-ASoC-Intel-Skylake-Fix-error-handling-in-cnl_.patch +Patch0383: 0383-ASoC-Intel-Skylake-Check-for-NHLT-ACPI-header.patch +Patch0384: 0384-ASoC-Intel-Skylake-Fix-Max-DSP-MCPS-value.patch +Patch0385: 0385-ASoC-Intel-Skylake-Fix-bug-in-module-id-retri.patch +Patch0386: 0386-ASoC-Intel-Skylake-Fix-incorrect-in_fmt-and-o.patch +Patch0387: 0387-ASoC-Intel-Skylake-Avoid-global-kcontrol-poin.patch +Patch0388: 0388-ASoC-Intel-Skylake-Return-default-sampling-ra.patch +Patch0389: 0389-ASoC-Intel-Skylake-Add-ULL-machine-driver-ent.patch +Patch0390: 0390-ASoC-Intel-Board-Add-BXTP-MRB-ULL-machine-dri.patch +Patch0391: 0391-ASoC-Intel-Skylake-Add-support-to-configure-A.patch +Patch0392: 0392-WA-Disable-irq-in-rt274.patch +Patch0393: 0393-ASoC-Intel-Skylake-Replace-modulus-operator-w.patch +Patch0394: 0394-ASoC-Intel-Skylake-Poll-on-ADSPCS.CSTALL-bit-.patch +Patch0395: 0395-ASoC-Intel-Skylake-Add-delay-during-DSP-core-.patch +Patch0396: 0396-ALSA-hda-Make-sure-DMA-is-stopped-by-reading-.patch +Patch0397: 0397-ALSA-hda-Make-sure-DMA-is-started-by-reading-.patch +Patch0398: 0398-ALSA-hda-Log-HDA-Hardware-related-errors.patch +Patch0399: 0399-ALSA-hda-check-if-stream-is-stopped-in-snd_hd.patch +Patch0400: 0400-ASoC-Intel-Skylake-Support-multiple-format-co.patch +Patch0401: 0401-SoundWire-Fix-CRC8-dependency.patch +Patch0402: 0402-soundwire-Change-programming-sequence-for-BRA.patch +Patch0403: 0403-WORKAROUND-ASoC-tdf8532-Add-delay-while-readi.patch +Patch0404: 0404-SoundWire-Perform-clock-exit-by-setting-clock.patch +Patch0405: 0405-ASoC-Intel-Skylake-Add-API-to-reset-private-i.patch +Patch0406: 0406-ASoC-Intel-Skylake-Add-an-API-to-reset-the-us.patch +Patch0407: 0407-ASoC-Intel-Skylake-Fix-the-is_dsp_running-to-.patch +Patch0408: 0408-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch +Patch0409: 0409-REVERTME-ASoC-Intel-CNL-Fix-for-the-firmware-.patch +Patch0410: 0410-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch +Patch0411: 0411-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch +Patch0412: 0412-ASoC-Intel-Skylake-Update-gain-interface-stru.patch +Patch0413: 0413-ASoC-Intel-Skylake-Read-extended-crash-dump-i.patch +Patch0414: 0414-ASoC-Intel-Skylake-Fix-issues-in-ADSP-Extende.patch +Patch0415: 0415-ASoC-Intel-kconfig-Make-drivers-build-on-x86-.patch +Patch0416: 0416-ASoC-tdf8532-Fix-Audio-memory-leakage-at-boot.patch +Patch0417: 0417-ASoC-Intel-Skylake-Fix-Audio-memory-leakage-a.patch +Patch0418: 0418-ASoC-Intel-Skylake-Add-support-to-notify-reso.patch +Patch0419: 0419-ASoC-Intel-BXT-Retry-FW-download-sequence.patch +Patch0420: 0420-ASoC-Intel-Skylake-Check-for-pointer-validity.patch +Patch0421: 0421-ASoC-Intel-Skylake-Fix-logs_core-array-size.patch +Patch0422: 0422-ASoC-Intel-Skylake-Replace-strcpy-with-strlcp.patch +Patch0423: 0423-ASoC-Intel-Boards-Replace-codec-to-component-.patch +Patch0424: 0424-ASoC-Intel-Skylake-Set-dsp-cores-off-during-s.patch +Patch0425: 0425-ASoC-Intel-Disable-dsp-core-in-skl_shutdown.patch +Patch0426: 0426-ASoC-soc-pcm-Fix-FE-and-BE-race-when-accessin.patch +Patch0427: 0427-Revert-ASoC-tdf8532-Fix-Audio-memory-leakage-.patch +Patch0428: 0428-ASoC-tdf8532-fix-memleak-in-tdf8532_wait_stat.patch +Patch0429: 0429-ASoC-tdf8532-right-free-allocated-space-in-ca.patch +Patch0430: 0430-ASoC-Intel-Skylake-Add-kabylake-R-machine-dri.patch +Patch0431: 0431-ASoC-Intel-Boards-Add-machine-driver-for-Kaby.patch +Patch0432: 0432-ASoC-rt298-Set-jack-combo-for-kabylake-R.patch +Patch0433: 0433-ASoC-Intel-Boards-Add-machine-driver-for-RSE-.patch +Patch0434: 0434-ASoC-Intel-Boards-Add-machine-driver-for-HU-t.patch +Patch0435: 0435-ASoC-Intel-Boards-Add-a-machine-driver-for-BX.patch +Patch0436: 0436-ASoC-Intel-Boards-Add-machine-driver-for-gene.patch +Patch0437: 0437-ASoC-Intel-Skylake-Add-RSE-HU-M3-and-generic-.patch +Patch0438: 0438-ASoC-Intel-Skylake-Resolve-load-DMA-control-c.patch +Patch0439: 0439-ASoC-Intel-Skylake-Improve-BXT-P-machine-driv.patch +Patch0440: 0440-ASoC-Intel-common-Provide-an-interface-to-sen.patch +Patch0441: 0441-ASoC-Intel-BXT-Remove-compile-warnings.patch +Patch0442: 0442-ASoC-topology-Increase-SND_SOC_TPLG_NUM_TEXTS.patch +Patch0443: 0443-ASoC-Intel-board-Add-support-for-FE-dynamic-d.patch +Patch0444: 0444-ASoC-Intel-Skylake-Enable-use_tplg_pcm-flag-f.patch +Patch0445: 0445-ASoC-Intel-Fix-race-condition-in-IPC-rx-list.patch +Patch0446: 0446-ASoC-Intel-Skylake-pipeline-needs-to-be-reset.patch +Patch0447: 0447-Revert-ASoC-topology-Increase-SND_SOC_TPLG_NU.patch +Patch0448: 0448-ASoC-Intel-Allow-for-firmware-load-retry.patch +Patch0449: 0449-Revert-ASoC-core-Do-not-return-for-dummy-code.patch +Patch0450: 0450-ASoC-Intel-Skylake-Align-with-v4.18-rc1-linux.patch +Patch0451: 0451-ASoC-Intel-Move-bxt-machine-drv-tables-to-com.patch +Patch0452: 0452-ASoC-Intel-Move-kbl-machine-drv-tables-to-com.patch +Patch0453: 0453-ASoC-Intel-Move-skl-machine-drv-tables-to-com.patch +Patch0454: 0454-ASoC-Intel-Move-glk-machine-drv-tables-to-com.patch +Patch0455: 0455-ASoC-Intel-Move-icl-machine-drv-tables-to-com.patch +Patch0456: 0456-ASoC-Intel-Move-cnl-machine-drv-tables-to-com.patch +Patch0457: 0457-ASoC-Intel-Skylake-validate-the-downloaded-fi.patch +Patch0458: 0458-ASoC-Intel-Replace-hdac_ext_bus-usage-with-hd.patch +Patch0459: 0459-REVERTME-Fix-no-audio-output-after-resume-fro.patch +Patch0460: 0460-REVERTME-Increase-tdf8532-timeout-and-number-.patch +Patch0461: 0461-fix-the-invalid-double-free-in-tdf8532-i2c-re.patch +Patch0462: 0462-ASoC-Intel-Skylake-Restore-static-SSP5-BE-dec.patch +Patch0463: 0463-Revert-ASoC-Intel-Skylake-validate-the-downlo.patch +Patch0464: 0464-ASoC-Intel-BXT-Print-version-details-of-ADSP-.patch +Patch0465: 0465-ASoC-tdf8532-add-crit-sections.patch +Patch0466: 0466-ASoC-Intel-bxtp-BXT_FW_INIT_RETRY-set-to-10.patch +Patch0467: 0467-ASoC-Intel-Skylake-Fix-for-lockup-in-sst_ipc_.patch +Patch0468: 0468-ASoC-Intel-Skylake-Set-DUM-bit-in-EM2-registe.patch +Patch0469: 0469-PCI-add-pci_devices_ignore-cmdline-optio.patch +Patch0470: 0470-x86-add-ACRN-hypervisor-guest.patch +Patch0471: 0471-VHM-add-vhm-char-device-driver.patch +Patch0472: 0472-VHM-add-guest-memory-management-support.patch +Patch0473: 0473-VHM-add-guest-memory-remote-mapping-supp.patch +Patch0474: 0474-VHM-add-ioreq-service-support.patch +Patch0475: 0475-VHM-add-interrupt-injection-support.patch +Patch0476: 0476-VHM-add-API-to-get-vm-info.patch +Patch0477: 0477-VHM-add-API-to-do-guest-gpa2hpa-translat.patch +Patch0478: 0478-VHM-add-passthrough-device-support.patch +Patch0479: 0479-x86-acrn-add-write_msi-pv-ops-to-interce.patch +Patch0480: 0480-sos-cleanup-hypercall-API.patch +Patch0481: 0481-vcpu-export-vcpu-create-interface-to-DM.patch +Patch0482: 0482-sos-clean-up-ptdev-msi-x-table-ioremap-o.patch +Patch0483: 0483-sos-Update-the-common-head-file.patch +Patch0484: 0484-sos-cleanup-ptdev-irq-structure.patch +Patch0485: 0485-VBS-K-Virtio-Backend-Service-in-Kernel-a.patch +Patch0486: 0486-VBS-K-virtqueue-initialization-API.patch +Patch0487: 0487-VBS-K-virtqueue-runtime-API.patch +Patch0488: 0488-VBS-K-added-a-VBS-K-reference-driver.patch +Patch0489: 0489-hypercall-refine-hypercall-interfaces.patch +Patch0490: 0490-vhm-refine-vm-related-hypercall-ioctrl.patch +Patch0491: 0491-hypercall-refine-HC-ID-and-parameter-num.patch +Patch0492: 0492-ioctl-cleanup-ioctl-structure.patch +Patch0493: 0493-Shared_buf-add-shared-buffer.patch +Patch0494: 0494-Shared_buf-added-hypercall-for-shared_bu.patch +Patch0495: 0495-ACRNTrace-add-acrn-trace-module.patch +Patch0496: 0496-sos-fix-potential-bugs-in-ptdev-msi-x-ac.patch +Patch0497: 0497-vhm-cleanup-ioctls.patch +Patch0498: 0498-VHM-check-HV-api-version-for-VHM-module-.patch +Patch0499: 0499-VHM-add-VHM-api-version-support.patch +Patch0500: 0500-virtio-framework-support-ACRN-virtio-dev.patch +Patch0501: 0501-VHM-sync-public-header-file-acrn_common..patch +Patch0502: 0502-Check-x86_hyper-type-before-doing-hyperc.patch +Patch0503: 0503-VHM-replace-function-name-update_mmio_ma.patch +Patch0504: 0504-VHM-refine-memory-segment-interface.patch +Patch0505: 0505-VBS-K-added-VHM-wrapper-APIs.patch +Patch0506: 0506-api-doc-add-ACRN-VBS-API-docs.patch +Patch0507: 0507-HVLog-reserve-memory-for-ACRN-HVLog.patch +Patch0508: 0508-HVLog-add-HVLog-module.patch +Patch0509: 0509-update-MEM_ATTR_WRITE_PROT-with-WB-polic.patch +Patch0510: 0510-vhm-modify-mmio-memory-map-unmap-api.patch +Patch0511: 0511-vhm-cleanup-update-one-field-name-in-vhm.patch +Patch0512: 0512-sos-add-a-config-for-VHM.patch +Patch0513: 0513-api-doc-add-vhm-API-docs.patch +Patch0514: 0514-api-doc-update-ACRN-VBS-API-docs.patch +Patch0515: 0515-license-update-intel-license-for-ACRN-VB.patch +Patch0516: 0516-VBS-K-fix-compilation-warnings-in-VBS-K-.patch +Patch0517: 0517-Cleanup-Kconfig.patch +Patch0518: 0518-skip-sbuf-and-vhm-initialization-when-bo.patch +Patch0519: 0519-VHM-add-hugetlb-page-ept-mapping-support.patch +Patch0520: 0520-VHM-change-VM_SYSMEM-VM_MMIO-to-VM_MEMMA.patch +Patch0521: 0521-VHM-add-hash-table-support-for-huge-page.patch +Patch0522: 0522-VHM-add-service-to-support-px-data-trans.patch +Patch0523: 0523-sos-sync-common-header-file.patch +Patch0524: 0524-sos_kernel-export-restart-vm-function-to.patch +Patch0525: 0525-VHM-add-service-to-support-cx-data-trans.patch +Patch0526: 0526-vhm-add-set_memmaps-hypercall-support.patch +Patch0527: 0527-vhm-use-set-memmaps-hypercall-for-hugetl.patch +Patch0528: 0528-vhm-prepare-future-update-for-struct-vm_.patch +Patch0529: 0529-VHM-bug-fix-on-operating-multi-thread-sy.patch +Patch0530: 0530-vhm-add-hypercall-to-set-sstate-data.patch +Patch0531: 0531-VHM-Update-cpu-id-type-as-uint16_t-for-s.patch +Patch0532: 0532-vhm-add-sos-offline-cpu-support.patch +Patch0533: 0533-vhm-Fix-kernel-doc-issues.patch +Patch0534: 0534-vhm-add-trusty-init-de-init-support.patch +Patch0535: 0535-vhm-Rename-the-restart_vm-to-reset_vm.patch +Patch0536: 0536-vhm-fix-kerneldoc-format.patch +Patch0537: 0537-sos-vhm-remove-set-guest-memory-map-by-C.patch +Patch0538: 0538-sos-vhm-remove-hugetlb_enabled-flag.patch +Patch0539: 0539-sos-vhm-remove-MAP_MMIO.patch +Patch0540: 0540-vhm-revisit-types-in-structure-parameter.patch +Patch0541: 0541-sos-vhm-add-hcall_write_protect_page-hyp.patch +Patch0542: 0542-sos-vhm-refine-set-memory-region-API.patch +Patch0543: 0543-vhm-remove-re-schedule-for-ioreq-tasklet.patch +Patch0544: 0544-vhm-Add-vcpu_num-to-record-vcpu-number-o.patch +Patch0545: 0545-vhm-mark-pending-ioreqs-in-bitmap-then-d.patch +Patch0546: 0546-vhm-use-correct-string-length.patch +Patch0547: 0547-vhm-adapt-to-the-new-state-transition-of.patch +Patch0548: 0548-vhm-Add-error-handling-for-IC_CREATE_VM-.patch +Patch0549: 0549-vhm-setup-ioreq-shared-buf-in-IC_CREATE_.patch +Patch0550: 0550-VBS-K-add-virtio_dev_reset.patch +Patch0551: 0551-VBS-K-Check-whether-vhm_client_id-is-val.patch +Patch0552: 0552-VBS-K-add-reset-support-for-vbs_rng.patch +Patch0553: 0553-VBS-K-fix-a-bug-due-to-incorrect-check-o.patch +Patch0554: 0554-VHM-remove-panic-action-when-ioreq-fails.patch +Patch0555: 0555-vbs-fix-virtio_vq_index_get-func-handlin.patch +Patch0556: 0556-vhm-init-client-kthread_exit-true.patch +Patch0557: 0557-vhm-fix-client-use-after-free.patch +Patch0558: 0558-Adds-new-API-for-unmap-memseg.patch +Patch0559: 0559-sos-vhm-add-HC_SETUP_HV_NPK_LOG-hypercal.patch +Patch0560: 0560-acrn-add-hv_npk_log-module.patch +Patch0561: 0561-Adding-kernel-parameter-for-forcing-xapi.patch +Patch0562: 0562-VHM-Add-EXPORT_SYMBOL-for-VHM-API-functi.patch +Patch0563: 0563-vhm-deinit-trusty-after-hcall_destroy_vm.patch +Patch0564: 0564-VHM-add-ioctl-hypercall-for-UOS-intr-dat.patch +Patch0565: 0565-vhm-enable-Werror-while-compiling-vhm-vb.patch +Patch0566: 0566-vhm-change-trace_printk-of-vhm_dev_ioctl.patch +Patch0567: 0567-vhm-add-ioeventfd-support-for-ACRN-hyper.patch +Patch0568: 0568-vhm-add-irqfd-support-for-ACRN-hyperviso.patch +Patch0569: 0569-vhm-add-ioctl-for-set-clear-IRQ-line.patch +Patch0570: 0570-sos-vhm-add-hypercall-to-set-guest-vcpu-.patch +Patch0571: 0571-Kernel-Acrn-Use-HYPERVISOR_CALLBACK_VECT.patch +Patch0572: 0572-VHM-Add-one-hypercall-to-configure-the-u.patch +Patch0573: 0573-VHM-Notify-hypervisor-to-switch-the-up-n.patch +Patch0574: 0574-Add-support-for-hypercalls-for-sep-and-s.patch +Patch0575: 0575-Kernel-VHM-Rename-acpi_generic_address-i.patch +Patch0576: 0576-drm-i915-gvt-some-changes-to-support-xen.patch +Patch0577: 0577-drm-i915-gvt-Refactored-BXT-plane-regist.patch +Patch0578: 0578-drm-i915-gvt-passthru-PIPE_DSL-regiser-t.patch +Patch0579: 0579-drm-i915-gvt-local-display-support.patch +Patch0580: 0580-drm-i915-gvt-local-display-support-in-GV.patch +Patch0581: 0581-drm-i915-gvt-Change-DomU-to-support-3-HD.patch +Patch0582: 0582-drm-i915-i915-changes-to-allow-DomU-to-s.patch +Patch0583: 0583-drm-i915-gvt-removed-save-store-register.patch +Patch0584: 0584-drm-i915-gvt-ivi-lazy-shadow-context.patch +Patch0585: 0585-drm-i915-gvt-add-some-MMIO-value-initial.patch +Patch0586: 0586-drm-i915-gvt-added-option-to-disable-wa_.patch +Patch0587: 0587-drm-i915-gvt-enable-ppgtt-oos-sync-by-de.patch +Patch0588: 0588-drm-i915-gvt-emit-shadow-ppgtt-root-in-L.patch +Patch0589: 0589-drm-i915-gvt-Raise-a-uevent-when-Dom-0-i.patch +Patch0590: 0590-drm-i915-gvt-Don-t-load-CSR-for-Dom-U.patch +Patch0591: 0591-drm-i915-gvt-add-acrngt-support.patch +Patch0592: 0592-drm-i915-gvt-hard-code-Pipe-B-plane-owne.patch +Patch0593: 0593-drm-i915-gvt-remove-some-initialization-.patch +Patch0594: 0594-drm-i915-gvt-avoid-unncessary-reset-in-G.patch +Patch0595: 0595-drm-i915-gvt-add-param-disable_gvt_fw_lo.patch +Patch0596: 0596-drm-i915-gvt-inject-error-interrupt-to-D.patch +Patch0597: 0597-drm-i915-gvt-Added-error-interrupt-handl.patch +Patch0598: 0598-drm-i915-gvt-Add-the-support-of-HUC_STAT.patch +Patch0599: 0599-drm-i915-gvt-Add-vgt-id-in-context-id.patch +Patch0600: 0600-drm-i915-gvt-show-pid-hw_id-of-current-D.patch +Patch0601: 0601-drm-i915-gvt-Add-new-trace-point-to-outp.patch +Patch0602: 0602-drm-i915-gvt-preliminary-per-ring-schedu.patch +Patch0603: 0603-drm-i915-gvt-Support-vGPU-guest-framebuf.patch +Patch0604: 0604-drm-i915-gvt-unset-DDI_BUF_CTL_ENABLE-du.patch +Patch0605: 0605-drm-i915-gvt-add-scaler-owner-to-support.patch +Patch0606: 0606-drm-i915-gvt-support-guest-plane-scaling.patch +Patch0607: 0607-drm-i915-gvt-add-module-parameter-enable.patch +Patch0608: 0608-drm-i915-gvt-get-ready-of-memory-for-pvm.patch +Patch0609: 0609-drm-i915-implement-pvmmio-in-guest-i915.patch +Patch0610: 0610-drm-i915-gvt-implement-pvmmio-in-GVTg.patch +Patch0611: 0611-drm-i915-gvt-add-pvmmio-support-in-preem.patch +Patch0612: 0612-drm-i915-Use-64-bit-write-to-optimize-wr.patch +Patch0613: 0613-drm-i915-gvt-don-t-treat-EINVAL-if-trap-.patch +Patch0614: 0614-drm-i915-gvt-pvmmio-optimization-for-pla.patch +Patch0615: 0615-drm-i915-gvt-handling-pvmmio-update-of-p.patch +Patch0616: 0616-drm-i915-gvt-enable-plane-update-pvmmio-.patch +Patch0617: 0617-drm-i915-gvt-implement-gfn_to_mfn-with-i.patch +Patch0618: 0618-drm-i915-gvt-cached-read_gpa-optimizatio.patch +Patch0619: 0619-drm-i915-gvt-add-a-fastpath-for-cmd-pars.patch +Patch0620: 0620-drm-i915-gvt-notify-ppgtt-update-through.patch +Patch0621: 0621-drm-i915-gvt-handle-ppgtt-update-from-g2.patch +Patch0622: 0622-drm-i915-gvt-enable-pv-ppgtt-update-by-d.patch +Patch0623: 0623-drm-i915-gvt-pvmmio-optimization-for-pla.patch +Patch0624: 0624-drm-i915-gvt-handling-pvmmio-update-of-p.patch +Patch0625: 0625-drm-i915-gvt-enable-plane-wm-pvmmio-leve.patch +Patch0626: 0626-drm-i915-gvt-notify-global-gtt-update-th.patch +Patch0627: 0627-drm-i915-gvt-handle-global-gtt-update-fr.patch +Patch0628: 0628-drm-i915-gvt-enable-pv-global-gtt-update.patch +Patch0629: 0629-drm-i915-gvt-Check-the-state-of-PVMMIO-g.patch +Patch0630: 0630-drm-i915-gvt-allocate-ddb-according-to-a.patch +Patch0631: 0631-REVERTME-IOTG-hyper_dmabuf-Introducing-t.patch +Patch0632: 0632-hyper_dmabuf-Enable-hyper_dmabuf-only-on.patch +Patch0633: 0633-hyper_dmabuf-Fix-array-length-check-issu.patch +Patch0634: 0634-kernel-hyper_dmabuf-disable-hyper_dmabuf.patch +Patch0635: 0635-hyper_dmabuf-Remove-void-cast-in-cpu_acc.patch +Patch0636: 0636-hyper_dmabuf-Fix-incorrect-return-in-hyp.patch +Patch0637: 0637-hyper_dmabuf-Check-for-NULL-value-before.patch +Patch0638: 0638-hyper_dmabuf-Remove-unused-variable-warn.patch +Patch0639: 0639-hyper_dmabuf-virtio-Protect-virtqueue-op.patch +Patch0640: 0640-hyper_dmabuf-virtio-Correctly-cleanup-fr.patch +Patch0641: 0641-hyper_dmabuf-virtio-bugfix-on-acrn_ioreq.patch +Patch0642: 0642-hyper_dmabuf-virtio-Add-support-for-VBS_.patch +Patch0643: 0643-hyper_dmabuf-virtio-Handle-S3-resume-cor.patch +Patch0644: 0644-hyper_dmabuf-fix-map-failure-issue-when-.patch +Patch0645: 0645-hyper_dmabuf-fix-compile-warnings-in-hyp.patch +Patch0646: 0646-hyper_dmabuf-virtio-Adapt-to-the-new-sta.patch +Patch0647: 0647-hyper_dmabuf-virtio-Process-ioreq-accord.patch +Patch0648: 0648-hyper_dmabuf-virtio-Fixed-compilation-wa.patch +Patch0649: 0649-hyper_dmabuf-Align-with-dma_buf_ops-chan.patch +Patch0650: 0650-drm-i915-diable-huge-page-ppgtt-when-usi.patch +Patch0651: 0651-INTERNAL-IOTG-drm-i915-Decouple-pipe-and.patch +Patch0652: 0652-INTERNAL-IOTG-drm-Don-t-assume-that-the-.patch +Patch0653: 0653-INTERNAL-IOTG-drm-i915-Introduce-the-Pla.patch +Patch0654: 0654-drm-i915-gvt-make-KBL-also-support-plane.patch +Patch0655: 0655-kernel-drm-i915-Check-the-plane_state-fb.patch +Patch0656: 0656-drm-i915-fix-a-kernel-panic-issue-of-pla.patch +Patch0657: 0657-drm-i915-gvt-ensure-each-pipe-has-a-plan.patch +Patch0658: 0658-drm-i915-to-limit-the-supported-modifier.patch +Patch0659: 0659-drm-i915-Optimize-watermark-calculation-.patch +Patch0660: 0660-drm-i915-gvt-clean-up-the-cfg-space-and-.patch +Patch0661: 0661-drm-i915-gvt-use-plane-size-for-fb-decod.patch +Patch0662: 0662-drm-i915-gvt-Forbid-command-to-access-no.patch +Patch0663: 0663-drm-i915-gvt-Introduce-non-context-MMIO-.patch +Patch0664: 0664-drm-i915-gvt-Enable-guest-conformance-de.patch +Patch0665: 0665-drm-i915-gvt-Add-a-module-parameter-to-d.patch +Patch0666: 0666-drm-i915-gvt-Skip-to-compare-force-nonpr.patch +Patch0667: 0667-drm-i915-gvt-Simply-the-conformance-chec.patch +Patch0668: 0668-drm-i915-Fixed-uninitialized-variable-is.patch +Patch0669: 0669-drm-i915-Check-for-a-valid-fb-when-compu.patch +Patch0670: 0670-upstream-drm-i915-gvt-correct-mask-setti.patch +Patch0671: 0671-drm-i915-gvt-Support-vgpu-workload-prior.patch +Patch0672: 0672-hyper_dmabuf-refine-Kconfig-and-Makefile.patch +Patch0673: 0673-hyper-dmabuf-disable-hyper-dmabuf-on-arc.patch +Patch0674: 0674-drm-i915-gvt-fix-kernel-panic-for-gvtbuf.patch +Patch0675: 0675-drm-i915-gvt-rebase-gvtbuffer-to-use-ups.patch +Patch0676: 0676-drm-i915-gvt-fix-missing-kernel-doc-for-.patch +Patch0677: 0677-drm-i915-gvt-not-to-touch-undefined-MOCS.patch +Patch0678: 0678-drm-i915-gvt-use-snprintf-instead-of-spr.patch +Patch0679: 0679-drm-i915-gvt-check-the-pointer-before-us.patch +Patch0680: 0680-drm-i915-gvt-check-msg-length-before-use.patch +Patch0681: 0681-kernel-remove-deprecated-VHM-IOCTLs.patch +Patch0682: 0682-Fix-warnings-introduced-by-acrn.patch +Patch0683: 0683-drm-i915-gvt-fixed-a-memory-leak-issue-in.patch +Patch0684: 0684-drm-i915-Sysfs-interface-to-get-GFX-shmem-.patch +Patch0685: 0685-drm-i915-Async-work-for-hdcp-authenticatio.patch +Patch0686: 0686-drm-i915-Commit-CP-without-modeset.patch +Patch0687: 0687-MUST_REBASE-IOTG-drm-i915-Allow-late-GuC-H.patch +Patch0688: 0688-drm-i915-Passing-the-intel_connector-to-HD.patch +Patch0689: 0689-drm-Add-CP-downstream_info-property.patch +Patch0690: 0690-drm-Add-CP-System-Renewability-Msg-Propert.patch +Patch0691: 0691-drm-i915-Add-HDCP-SRM-Blob-parsing.patch +Patch0692: 0692-drm-i915-Add-revocation-check-on-Ksvs.patch +Patch0693: 0693-i915-Add-cp_downstream-property.patch +Patch0694: 0694-REVERTME-IOTG-drm-i915-Add-GuC-v9.29-and-H.patch +Patch0695: 0695-drm-i915-Add-interface-to-set-ctm-post-off.patch +Patch0696: 0696-Allow-RenderNode-to-be-used-for-kms-getter.patch +Patch0697: 0697-reboot-add-reboot_panic-parameter.patch +Patch0698: 0698-Debug-Add-register-dump.patch +Patch0699: 0699-stm-class-Rework-policy-node-fallback.patch +Patch0700: 0700-stm-class-Clarify-configfs-root-type-operatio.patch +Patch0701: 0701-stm-class-Clean-up-stp_configfs_init.patch +Patch0702: 0702-stm-class-Introduce-framing-protocol-drivers.patch +Patch0703: 0703-stm-class-Add-a-helper-for-writing-data-packe.patch +Patch0704: 0704-stm-class-Factor-out-default-framing-protocol.patch +Patch0705: 0705-stm-class-Switch-over-to-the-protocol-driver.patch +Patch0706: 0706-stm-class-Add-MIPI-SyS-T-protocol-support.patch +Patch0707: 0707-stm-class-p_sys-t-Add-support-for-CLOCKSYNC-p.patch +Patch0708: 0708-stm-class-p_sys-t-Document-the-configfs-inter.patch +Patch0709: 0709-stm-class-Document-the-MIPI-SyS-T-protocol-us.patch +Patch0710: 0710-stm-class-Update-documentation-to-match-the-n.patch +Patch0711: 0711-stm-class-SPDX-ify-the-documentation.patch +Patch0712: 0712-stm-class-heartbeat-Fix-whitespace.patch +Patch0713: 0713-lib-Add-memcat_p-paste-2-pointer-arrays-toget.patch +Patch0714: 0714-stm-class-Use-memcat_p.patch +Patch0715: 0715-lib-Fix-ia64-bootloader-linkage.patch +Patch0716: 0716-test-configs-use-for-clean-and-android-bare-metal-BA.patch +Patch0717: 0717-platform-x86-add-sep-and-socwatch-drivers-without-so.patch +Patch0718: 0718-Fix-for-socwatch-build-error-that-occurs-if-CONFIG_T.patch +Patch0719: 0719-SEP-some-cleanup.patch +Patch0720: 0720-MUST_REBASE-Enable-plane-decryption-bit.patch +Patch0721: 0721-Revert-ASoC-Intel-Skylake-Avoid-sending-IPCs-during-.patch +Patch0722: 0722-Revert-ASoC-Intel-Skylake-Implement-recovery-for-cAV.patch +Patch0723: 0723-ASoC-Intel-Restore-static-FE-declaration-for-bxt_tdf.patch +Patch0724: 0724-Revert-ASoC-Intel-SKL-Implement-the-timer-to-trigger.patch +Patch0725: 0725-Revert-ASoC-tdf8532-add-crit-sections.patch +Patch0726: 0726-media-intel-ipu4-VIRT-Fix-video-buffer-double-free-i.patch +Patch0727: 0727-ipu-virtio-Null-ptr-check-of-intel_ipu4_virtio_msg_p.patch +Patch0728: 0728-drm-i915-gvt-fix-array-index-mismatch-issue.patch +Patch0729: 0729-drm-i915-gvt-add-plane-rotation-support-for-90-180-a.patch +Patch0730: 0730-ipu-Fix-double-free-and-firmware-loading-issues.patch +Patch0731: 0731-drm-i915-Add-missing-decryption-bit-impleme.patch +Patch0732: 0732-igb_avb-remove-the-unnecessary-exclusive-of.patch +Patch0733: 0733-ASoC-Intel-Skylake-refactor-memory-manageme.patch +Patch0734: 0734-platform-x86-Fix-SEP-driver-license-header-.patch +Patch0735: 0735-Revert-Fix-for-cbc-kernel-driver-crash-duri.patch +Patch0736: 0736-Revert-cbc-Avoid-rx-sequence-counter-mismat.patch +Patch0737: 0737-Revert-Integration-of-CBC-line-discipline-k.patch +Patch0738: 0738-Integration-of-CBC-line-discipline-kernel-m.patch +Patch0739: 0739-cbc-Avoid-rx-sequence-counter-mismatch-warn.patch +Patch0740: 0740-Fix-for-cbc-kernel-driver-crash-during-warm.patch +Patch0741: 0741-Fix-the-race-in-cbc-buffer-queue.patch +Patch0742: 0742-v4.19.5-update-fixup-smack_lsm.c.patch +Patch0743: 0743-v4.19.5-update-fix-up-intel_display.c.patch +Patch0744: 0744-mmc-move-it-earlier-in-drivers-Makefile.patch +Patch0745: 0745-ASoC-Intel-Skylake-Acquire-irq-after-RIRB-allocation.patch +Patch0746: 0746-media-intel-ipu4-ICI-Use-fixed-delay-to-avo.patch +Patch0747: 0747-media-intel-ipu4-VIRT-Add-mutex-to-avoid-ra.patch +Patch0748: 0748-media-intel-ipu4-use-softlink-instead-of-sh.patch +Patch0749: 0749-media-intel-ipu4-refine-ipu_fw_isys_close-m.patch +Patch0750: 0750-igb_avb-fix-kernel-panic-in-S3-process.patch +Patch0751: 0751-panic-add-options-to-print-system-info-when.patch +Patch0752: 0752-media-intel-ipu4-adv7481_hdmi-Fix-S3-resume.patch +Patch0753: 0753-Fix-iommu-dma-memory-mapping-failure.patch +Patch0754: 0754-kernel-Revert-x86-acrn-add-write_msi-pv-ops.patch +Patch0755: 0755-Fixing-doc-build-caused-by-linux-vbs-vbs.h.patch +Patch0756: 0756-SOS-Guest-x2APIC-support-for-SOS.patch +Patch0757: 0757-vhm-Add-ioctl-IC_CLEAR_VM_IOREQ-to-cleanup-.patch +Patch0758: 0758-vhm-mark-ioreq-completed-in-acrn_ioreq_comp.patch +Patch0759: 0759-vhm-support-polling-mode-of-ioreq-completio.patch +Patch0760: 0760-HVLog-Fix-typo-and-refine-sbuf_hvlog_index.patch +Patch0761: 0761-vhm-remove-reserve-memory-for-trusty.patch +Patch0762: 0762-VBS-export-vbs-symbols.patch +Patch0763: 0763-drm-i915-gvt-fix-gvtbuffer-ioctl-tile-forma.patch +Patch0764: 0764-drm-i915-gvt-remove-tag-from-vGPU-context-I.patch +Patch0765: 0765-Revert-drm-i915-gvt-hard-code-Pipe-B-plane-.patch +Patch0766: 0766-Kernel-VHM-Use-the-bit_op-to-remove-the-vol.patch +Patch0767: 0767-Kernel-VHM-Use-the-traped-pci_access-addr-b.patch +Patch0768: 0768-kernel-VHM-Fix-race-condition-in-ioreq_clie.patch +Patch0769: 0769-Kernel-VHM-refine-the-refcnt-of-vhm_vm-so-t.patch +Patch0770: 0770-i915-temporarily-disable-a-gem-assert.patch +Patch0771: 0771-i915-make-driver-init-async.patch +Patch0772: 0772-ASoC-Intel-Skylake-Export-skylake-functions.patch +Patch0773: 0773-ASoC-Intel-Skylake-Modify-skl_platform_regi.patch +Patch0774: 0774-ASoC-Intel-Skylake-Add-Kconfig-options-for-.patch +Patch0775: 0775-ASoC-Intel-Skylake-Add-support-for-Virtio-S.patch +Patch0776: 0776-ASoC-Intel-Skylake-Register-virtualization-.patch +Patch0777: 0777-ASoC-Intel-Skylake-Notify-BE-about-stream-u.patch +Patch0778: 0778-ASoC-Intel-Skylake-Workarounds-for-virtuali.patch +Patch0779: 0779-ASoC-Intel-Skylake-Virt-Add-virtualization-.patch +Patch0780: 0780-tc-Add-support-for-configuring-the-taprio-s.patch +Patch0781: 0781-REVERTME-ASoC-Add-error-handling-for-stream.patch +Patch0782: 0782-ASoC-tdf8532-Account-for-critical-sections.patch +Patch0783: 0783-platform-x86-sep-socwatchhv-driver-and-code.patch +Patch0784: 0784-Asoc-Intel-Skylake-display-firmware-name-an.patch +Patch0785: 0785-ASoc-Intel-Skylake-Fix-build-issue-in-skl-v.patch +Patch0786: 0786-VHM-Check-null-pointer-of-vhm_req-before-up.patch +Patch0787: 0787-vhm-Correct-the-parameters-usage-in-find_ne.patch +Patch0788: 0788-kernel-VHM-Add-the-vm-owner-for-each-ioreq_.patch +Patch0789: 0789-Kernel-VHM-VM_list-changes-the-lock-from-mu.patch +Patch0790: 0790-Kernel-VHM-Refine-the-usage-of-spinlock-in-.patch +Patch0791: 0791-drm-i915-gvt-emulate-correct-state-of-SKL_F.patch +Patch0792: 0792-VBS-K-use-kernel-virtio-header-files.patch +Patch0793: 0793-virtio_blk-add-discard-and-write-zeroes-sup.patch +Patch0794: 0794-ASoc-Intel-Skylake-Pass-correct-parameter-t.patch +Patch0795: 0795-mei-virtio-fix-queue-flush-with-non-empty-v.patch +Patch0796: 0796-mei-dal-fix-race-in-bh_request-completion.patch +Patch0797: 0797-mei-dal-fix-a-race-in-bh_request.patch +Patch0798: 0798-rcu-Do-RCU-GP-kthread-self-wakeup-from-soft.patch +Patch0799: 0799-drm-i915-execlists-Force-preemption-via-res.patch +Patch0800: 0800-drm-i915-execlists-Try-preempt-reset-from-h.patch +Patch0801: 0801-drm-i915-preemption-Select-timeout-when-sch.patch +Patch0802: 0802-drm-i915-Use-a-preemption-timeout-to-enforc.patch +Patch0803: 0803-drm-i915-Allow-user-control-over-preempt-ti.patch +Patch0804: 0804-media-intel-ipu4-add-timestamp-info-in-driv.patch +Patch0805: 0805-media-ov2775-Update-v4l2-ctrl-setting.patch +Patch0806: 0806-media-Buttress-base-addr-interface.patch +Patch0807: 0807-media-intel-ipu4-ox03a10-set-hflip-default.patch +Patch0808: 0808-media-intel-ipu4-magna-Modify-for-dual-magn.patch +Patch0809: 0809-media-ov2775-update-register-setting.patch +Patch0810: 0810-media-intel-ipu4-be-soc-Set-NV16-input-form.patch +Patch0811: 0811-media-ti964-pdata-for-AS_1140.patch +Patch0812: 0812-media-ti964-add-magna-subdev-for-2nd-ti964.patch +Patch0813: 0813-media-intel-ipu4-css-scci_IPU4_master_20181.patch +Patch0814: 0814-media-intel-ipu4-css-scci_IPU4_master_20181.patch +Patch0815: 0815-media-intel-ipu4-fix-build-warning.patch +Patch0816: 0816-media-intel-ipu4-VIRT-Use-pointer-for-sync-.patch +Patch0817: 0817-media-intel-ipu4-VIRT-Psys-mediation-stub-p.patch +Patch0818: 0818-media-intel-ipu4-VIRT-Psys-mediation-connec.patch +Patch0819: 0819-media-intel-ipu4-VIRT-Support-for-PSYS-BE.patch +Patch0820: 0820-media-intel-ipu4-VIRT-Add-support-for-getbu.patch +Patch0821: 0821-media-intel-ipu4-VIRT-Add-support-for-dqeve.patch +Patch0822: 0822-media-intel-ipu4-VIRT-Add-support-for-IPU_I.patch +Patch0823: 0823-media-intel-ipu4-VIRT-Add-32-bits-IOTCL-sup.patch +Patch0824: 0824-media-intel-ipu4-VIRT-Add-class_create-for-.patch +Patch0825: 0825-media-intel-ipu4-VIRT-Fix-1st-run-hang-and-.patch +Patch0826: 0826-media-intel-ipu4-VIRT-Move-the-PYSY-buffer-.patch +Patch0827: 0827-media-intel-ipu4-VIRT-Use-actual-object-siz.patch +Patch0828: 0828-media-intel-ipu4-VIRT-Add-timeout-to-front-.patch +Patch0829: 0829-media-intel-ipu4-VIRT-Fixed-function-exit-t.patch +Patch0830: 0830-media-intel-ipu4-VIRT-Use-native-driver-fun.patch +Patch0831: 0831-media-ici-Change-value-of-ICI_FORMAT_RGB565.patch +Patch0832: 0832-media-intel-ipu4-VIRT-Fix-PSYS-2-PG-operati.patch +Patch0833: 0833-media-ici-Change-ici_isys_pixelformat-param.patch +Patch0834: 0834-media-intel-ipu4-ICI-Fix-putbuf-list-and-ge.patch +Patch0835: 0835-media-ipu4-add-virtio-depends-for-ipu-virti.patch +Patch0836: 0836-media-intel-ipu4-VIRT-Support-for-IPU-ACRN-.patch +Patch0837: 0837-drm-i915-gvt-fix-kernel-panic-when-fail-to-.patch +Patch0838: 0838-vhm-fix-audio-backend-module-handle-ioreq-i.patch +Patch0839: 0839-drm-i915-gvt-force-to-active-the-high-perfo.patch +Patch0840: 0840-igb_avb-back-port-an-upstream-patch-and-add.patch +Patch0841: 0841-ASoC-Intel-boards-Update-aliases-for-TDF-ma.patch +Patch0842: 0842-drm-i915-Not-wait-for-fuse-registers-in-gue.patch +Patch0843: 0843-media-i2c-ti964-ICI-Enabling-TI964-deser-an.patch +Patch0844: 0844-media-ici-Change-total-BE_STREAMS-and-MAX_S.patch +Patch0845: 0845-media-i2c-crlmodule-lite-Remove-unused-vari.patch +Patch0846: 0846-media-intel-ipu4-VIRT-Release-ISYS-buffer-d.patch +Patch0847: 0847-media-intel-ipu4-ICI-get-virtual-I2C-ID-dyn.patch +Patch0848: 0848-media-intel-ipu4-ICI-Fix-cvbs-image-quality.patch +Patch0849: 0849-media-intel-ipu4-ICI-Fix-sometimes-FW-faile.patch +Patch0850: 0850-media-intel-ipu4-VIRT-Fix-ipu_psys_getbuf-f.patch +Patch0851: 0851-media-i2c-pci-Reduce-log-level.patch +Patch0852: 0852-media-ici-Add-handler-to-clear-dma-mapped-b.patch +Patch0853: 0853-media-intel-ipu4-ICI-MAX9286-and-AR0231AT-e.patch +Patch0854: 0854-media-i2c-Fix-for-warnings-for-max9286_ici-.patch +Patch0855: 0855-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch +Patch0856: 0856-media-intel-ipu4-ICI-Workaround-to-force-co.patch +Patch0857: 0857-Revert-igb_avb-back-port-an-upstream-patch-.patch +Patch0858: 0858-drm-i915-gvt-allocate-memory-for-vreg-mmio-.patch +Patch0859: 0859-Security-improvement-for-depressing-compile.patch +Patch0860: 0860-platform-x86-Change-struct-fields-to-16-bit.patch +Patch0861: 0861-drm-i915-gvt-Get-Port-ID-from-the-encoder-o.patch +Patch0862: 0862-drivers-hyper_dmabuf-Reuse-the-exported-dma.patch +Patch0863: 0863-drivers-hyper_dmabuf-Remove-the-imported-dm.patch +Patch0864: 0864-drivers-hyper_dmabuf-Remove-from-imported_l.patch +Patch0865: 0865-Security-Fix-copy-wrong-size-of-keystore-cl.patch +Patch0866: 0866-Bug-Fix-to-fix-incorrect-osid-value.patch +Patch0867: 0867-media-intel-ipu4-VIRT-Avoid-double-close-of.patch +Patch0868: 0868-media-intel-ipu4-VIRT-Increase-the-POLL_WAI.patch +Patch0869: 0869-intel-ipu4-ici-Move-empty-list-check-into-s.patch +Patch0870: 0870-drm-Add-per-plane-pixel-blend-mode-property.patch +Patch0871: 0871-drm-i915-Add-plane-alpha-blending-support-v.patch +Patch0872: 0872-igb_avb-Fix-invalid-memory-access-after-S3-.patch +Patch0873: 0873-drm-i915-Introduce-initial-mode-setting.patch +Patch0874: 0874-keystore-fix-memory-leaks.patch +Patch0875: 0875-keystore-fix-missing-break.patch +Patch0876: 0876-keystore-add-application-authentication-fea.patch +Patch0877: 0877-Revert-drm-i915-Add-plane-alpha-blending-su.patch +Patch0878: 0878-Revert-drm-Add-per-plane-pixel-blend-mode-p.patch +Patch0879: 0879-ASoC-Intel-Skylake-Add-FE-and-BE-DAIs-for-U.patch +Patch0880: 0880-Revert-ASoC-Intel-board-Add-support-for-FE-.patch +Patch0881: 0881-ASoC-Intel-board-Update-BXT-P-ULL-machine-d.patch +Patch0882: 0882-media-intel-ipu4-ICI-start-stream-with-corr.patch +Patch0883: 0883-media-intel-ipu4-ICI-Reorder-mutex-lock-of-.patch +Patch0884: 0884-ASoC-Skl-Virt-Fix-incorrect-virt-msg-respon.patch +Patch0885: 0885-ASoC-Skl-Virt-Add-locks-to-virtqueue-relate.patch +Patch0886: 0886-ASoC-Skl-Virt-Add-locks-to-substreams-list.patch +Patch0887: 0887-ASoC-Skl-Virt-Handle-timed-out-message-repl.patch +Patch0888: 0888-trusty-Add-trusty-driver.patch +Patch0889: 0889-trusty-Add-notifier-before-and-after-every-.patch +Patch0890: 0890-trusty-Get-version-string-from-trusty.patch +Patch0891: 0891-trusty-Add-interrupt-support.patch +Patch0892: 0892-trusty-Add-fiq-support.patch +Patch0893: 0893-trusty-arm64-fiq-support.patch +Patch0894: 0894-trusty-fiq-arm64-Allow-multiple-fiq-handler.patch +Patch0895: 0895-trusty-Add-trusty-logging-driver.patch +Patch0896: 0896-trusty-add-couple-non-secure-memory-related.patch +Patch0897: 0897-trusty-add-trusty-virtio-driver.patch +Patch0898: 0898-trusty-add-trusty-ipc-driver.patch +Patch0899: 0899-trusty-Select-api-version.patch +Patch0900: 0900-trusty-Handle-fiqs-without-calling-notifier.patch +Patch0901: 0901-trusty-Add-smp-support.patch +Patch0902: 0902-trusty-irq-Add-support-for-secure-interrupt.patch +Patch0903: 0903-Modify-the-static-analysis-errors-for-googl.patch +Patch0904: 0904-Modify-Google-s-trusty-drivers-so-as-to-sup.patch +Patch0905: 0905-Fix-the-issue-for-tipc-test-case-closer1.patch +Patch0906: 0906-trusty-implement-trusty-OS-timer-proxy-for-.patch +Patch0907: 0907-Replace-CPU_STARTING-CPU_DYING-with-CPU_UP_.patch +Patch0908: 0908-trusty-fix-incompatible-pointer-types.patch +Patch0909: 0909-trusty-move-async-works-off-system-workqueu.patch +Patch0910: 0910-trusty-print-out-Built-in-kernel-directly.patch +Patch0911: 0911-trusty-Popup-warning-when-LK-timer-interrup.patch +Patch0912: 0912-trusty-log-Add-vmm-panic-notifier-for-vmm-d.patch +Patch0913: 0913-trusty-fix-rcu_preempt-soft-lockup-crash-is.patch +Patch0914: 0914-trusty-Add-VMM-PANIC-dump-data.patch +Patch0915: 0915-Modify-Trusty-drivers-so-as-to-compatible-w.patch +Patch0916: 0916-Limit-to-output-trusty-lk-log-on-debug-vers.patch +Patch0917: 0917-trusty-ipc-tipc_msg_hdr-structure-support-l.patch +Patch0918: 0918-trusty-ipc-change-DEFAULT_MSG_BUF_SIZE-to-6.patch +Patch0919: 0919-check-CPUID-while-probe-trusty-drivers.patch +Patch0920: 0920-Fix-the-compile-error-when-update-4.12.patch +Patch0921: 0921-trusty-Fix-the-warnings-for-eywa-building.patch +Patch0922: 0922-trusty-Enable-dynamic-timer.patch +Patch0923: 0923-check-vmm-signature-for-vmm-dump.patch +Patch0924: 0924-Revert-BXT-DYNAMIC-TIMER-Enable-dynamic-tim.patch +Patch0925: 0925-Revert-trusty-implement-trusty-OS-timer-pro.patch +Patch0926: 0926-trusty-add-support-for-parameterized-NOP-op.patch +Patch0927: 0927-trusty-switch-to-use-version-3-of-TRUSTY_AP.patch +Patch0928: 0928-trusty-add-support-for-SM-Wall-object.patch +Patch0929: 0929-trusty-add-support-for-trusty-backup-timer.patch +Patch0930: 0930-trusty-kernel-driver-code-refine.patch +Patch0931: 0931-Change-Trusty-Kconfig-to-build-for-X86-Arch.patch +Patch0932: 0932-trusty-Add-null-check-pointer-before-defere.patch +Patch0933: 0933-trusty-Check-if-eVmm-is-available-before-in.patch +Patch0934: 0934-trusty-Update-Trusty-timer-solution.patch +Patch0935: 0935-trusty-detect-vmm-when-load-trusty-driver.patch +Patch0936: 0936-Remove-unused-label-to-depress-compile-warn.patch +Patch0937: 0937-trusty-Update-dependency-of-trusty-module.patch +Patch0938: 0938-trusty-Rename-CWP-with-ACRN.patch +Patch0939: 0939-trusty-add-RAX-into-clobber-list-of-inline-.patch +Patch0940: 0940-trusty-Update-macro-SMC_FC_GET_WALL_SIZE-fr.patch +Patch0941: 0941-unify-trusty-driver.patch +Patch0942: 0942-Revert-trusty-ipc-change-DEFAULT_MSG_BUF_SI.patch +Patch0943: 0943-refine-work-queue-in-trusty-driver.patch +Patch0944: 0944-register-suspend-callback.patch +Patch0945: 0945-Fix-compile-warning-from-ISO90-and-output-f.patch +Patch0946: 0946-check-return-value-of-hypercall.patch +Patch0947: 0947-Fix-compilation-errors-when-rebase-to-v4.19.patch +Patch0948: 0948-VHM-Add-one-hypercall-to-query-hardware-inf.patch +Patch0949: 0949-HVLog-Refine-acrn_hvlog-to-remove-the-limit.patch +Patch0950: 0950-ACRNTrace-Refine-acrn-trace-module-to-remov.patch +Patch0951: 0951-kernel-Sync-the-common-header-file.patch +Patch0952: 0952-vhm-remove-the-flooding-log-from-vhm.patch +Patch0953: 0953-media-intel-ipu4-VIRT-Increase-wait-time.patch +Patch0954: 0954-media-intel-ipu4-VIRT-Clean-up-SOS-states-a.patch +Patch0955: 0955-media-intel-ipu4-fix-v4l2_g_ext_ctrls-param.patch +Patch0956: 0956-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +Patch0957: 0957-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +Patch0958: 0958-media-psys-Enable-new-FW-API-for-IPU-perfor.patch Patch0959: 0959-media-intel-ipu4p-css-scci_IPU4_master_2018.patch -Patch0960: 0960-media-psys-Enable-new-FW-API-for-IPU-perfor.patch +Patch0960: 0960-media-intel-ipu4-css-scci_IPU4_master_20181.patch Patch0961: 0961-media-intel-ipu4p-css-scci_IPU4_master_2018.patch -Patch0962: 0962-media-intel-ipu4-css-scci_IPU4_master_20181.patch -Patch0963: 0963-media-intel-ipu4p-css-scci_IPU4_master_2018.patch -Patch0964: 0964-media-css-scci_master_20181105_2026-FwRelea.patch -Patch0965: 0965-media-buttress-Use-ISR_STATUS-in-buttress-I.patch -Patch0966: 0966-media-intel-ipu4-fix-2-kernel-panic-in-ipu-.patch -Patch0967: 0967-media-intel-ipu4p-css-scci_IPU4_master_2018.patch -Patch0968: 0968-media-Enable-streamID-switching-for-ISYS-IO.patch -Patch0969: 0969-media-Set-IPU-device-name.patch -Patch0970: 0970-media-i2c-add-required-kconf-dependency.patch -Patch0971: 0971-media-Disable-CSI-EOF-IRQ.patch -Patch0972: 0972-media-Disable-FW-IRQ-and-response-of-EOF.patch -Patch0973: 0973-media-intel-ipu4-remove-redundant-assignmen.patch -Patch0974: 0974-media-intel-ipu4-ov495-OV2775-OV495-enablem.patch +Patch0962: 0962-media-css-scci_master_20181105_2026-FwRelea.patch +Patch0963: 0963-media-buttress-Use-ISR_STATUS-in-buttress-I.patch +Patch0964: 0964-media-intel-ipu4-fix-2-kernel-panic-in-ipu-.patch +Patch0965: 0965-media-intel-ipu4p-css-scci_IPU4_master_2018.patch +Patch0966: 0966-media-Enable-streamID-switching-for-ISYS-IO.patch +Patch0967: 0967-media-Set-IPU-device-name.patch +Patch0968: 0968-media-i2c-add-required-kconf-dependency.patch +Patch0969: 0969-media-Disable-CSI-EOF-IRQ.patch +Patch0970: 0970-media-Disable-FW-IRQ-and-response-of-EOF.patch +Patch0971: 0971-media-intel-ipu4-remove-redundant-assignmen.patch +Patch0972: 0972-media-intel-ipu4-ov495-OV2775-OV495-enablem.patch +Patch0973: 0973-media-intel-ipu4-css-scci_IPU4_master_20181.patch +Patch0974: 0974-media-intel-ipu4p-css-scci_IPU4_master_2018.patch Patch0975: 0975-media-intel-ipu4-css-scci_IPU4_master_20181.patch Patch0976: 0976-media-intel-ipu4p-css-scci_IPU4_master_2018.patch -Patch0977: 0977-media-intel-ipu4-css-scci_IPU4_master_20181.patch -Patch0978: 0978-media-intel-ipu4p-css-scci_IPU4_master_2018.patch -Patch0979: 0979-media-intel-ipu4-ti960-fix-map-conflict.patch -Patch0980: 0980-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch -Patch0981: 0981-media-intel-ipu4-VIRT-Avoid-double-close-of.patch -Patch0982: 0982-media-intel-ipu4-pdata-for-OV495-multiport.patch -Patch0983: 0983-media-intel-ipu4-fix-TI960-i2c-adapter.patch -Patch0984: 0984-media-intel-ipu4-enable-OV495-multiport.patch -Patch0985: 0985-media-intel-ipu4-restore-back-ox03a-init-se.patch -Patch0986: 0986-media-intel-ipu4-separated-init-seq-for-ox0.patch +Patch0977: 0977-media-intel-ipu4-ti960-fix-map-conflict.patch +Patch0978: 0978-media-intel-ipu4-VIRT-Close-dmabuf-fd-when-.patch +Patch0979: 0979-media-intel-ipu4-VIRT-Avoid-double-close-of.patch +Patch0980: 0980-media-intel-ipu4-pdata-for-OV495-multiport.patch +Patch0981: 0981-media-intel-ipu4-fix-TI960-i2c-adapter.patch +Patch0982: 0982-media-intel-ipu4-enable-OV495-multiport.patch +Patch0983: 0983-media-intel-ipu4-restore-back-ox03a-init-se.patch +Patch0984: 0984-media-intel-ipu4-separated-init-seq-for-ox0.patch #END XXXX: PK Series # Clear Linux Series @@ -1062,7 +1060,7 @@ Group: kernel Linux kernel extra files %prep -%setup -q -n linux-4.19.13 +%setup -q -n linux-4.19.18 #patchXXXX PK Series %patch0001 -p1 @@ -2049,8 +2047,6 @@ Linux kernel extra files %patch0982 -p1 %patch0983 -p1 %patch0984 -p1 -%patch0985 -p1 -%patch0986 -p1 # End XXXX PK Series # Clear Linux Series diff --git a/release b/release index b8626c4c..7ed6ff82 100644 --- a/release +++ b/release @@ -1 +1 @@ -4 +5