struct rdt_resource *r;
 
        for_each_rdt_resource(r) {
-               if (r->rid == RDT_RESOURCE_MBA) {
+               if (r->rid == RDT_RESOURCE_L3 ||
+                   r->rid == RDT_RESOURCE_L3DATA ||
+                   r->rid == RDT_RESOURCE_L3CODE ||
+                   r->rid == RDT_RESOURCE_L2 ||
+                   r->rid == RDT_RESOURCE_L2DATA ||
+                   r->rid == RDT_RESOURCE_L2CODE)
+                       r->cbm_validate = cbm_validate_intel;
+               else if (r->rid == RDT_RESOURCE_MBA) {
                        r->msr_base = MSR_IA32_MBA_THRTL_BASE;
                        r->msr_update = mba_wrmsr_intel;
                        r->parse_ctrlval = parse_bw_intel;
 
  *     are allowed (e.g. FFFFH, 0FF0H, 003CH, etc.).
  * Additionally Haswell requires at least two bits set.
  */
-static bool cbm_validate(char *buf, u32 *data, struct rdt_resource *r)
+bool cbm_validate_intel(char *buf, u32 *data, struct rdt_resource *r)
 {
        unsigned long first_bit, zero_bit, val;
        unsigned int cbm_len = r->cache.cbm_len;
                return -EINVAL;
        }
 
-       if (!cbm_validate(data->buf, &cbm_val, r))
+       if (r->cbm_validate && !r->cbm_validate(data->buf, &cbm_val, r))
                return -EINVAL;
 
        if ((rdtgrp->mode == RDT_MODE_EXCLUSIVE ||
 
  * struct rdt_resource - attributes of an RDT resource
  * @rid:               The index of the resource
  * @alloc_enabled:     Is allocation enabled on this machine
- * @mon_enabled:               Is monitoring enabled for this feature
+ * @mon_enabled:       Is monitoring enabled for this feature
  * @alloc_capable:     Is allocation available on this machine
- * @mon_capable:               Is monitor feature available on this machine
+ * @mon_capable:       Is monitor feature available on this machine
  * @name:              Name to use in "schemata" file
  * @num_closid:                Number of CLOSIDs available
  * @cache_level:       Which cache level defines scope of this resource
  * @cache:             Cache allocation related data
  * @format_str:                Per resource format string to show domain value
  * @parse_ctrlval:     Per resource function pointer to parse control values
- * @evt_list:                  List of monitoring events
- * @num_rmid:                  Number of RMIDs available
- * @mon_scale:                 cqm counter * mon_scale = occupancy in bytes
- * @fflags:                    flags to choose base and info files
+ * @cbm_validate       Cache bitmask validate function
+ * @evt_list:          List of monitoring events
+ * @num_rmid:          Number of RMIDs available
+ * @mon_scale:         cqm counter * mon_scale = occupancy in bytes
+ * @fflags:            flags to choose base and info files
  */
 struct rdt_resource {
        int                     rid;
        int (*parse_ctrlval)(struct rdt_parse_data *data,
                             struct rdt_resource *r,
                             struct rdt_domain *d);
+       bool (*cbm_validate)(char *buf, u32 *data, struct rdt_resource *r);
        struct list_head        evt_list;
        int                     num_rmid;
        unsigned int            mon_scale;
 void cqm_handle_limbo(struct work_struct *work);
 bool has_busy_rmid(struct rdt_resource *r, struct rdt_domain *d);
 void __check_limbo(struct rdt_domain *d, bool force_free);
+bool cbm_validate_intel(char *buf, u32 *data, struct rdt_resource *r);
 
 #endif /* _ASM_X86_RESCTRL_INTERNAL_H */