def_bool n
        select HAVE_MARCH_Z13_FEATURES
 
+config HAVE_MARCH_Z15_FEATURES
+       def_bool n
+       select HAVE_MARCH_Z14_FEATURES
+
 choice
        prompt "Processor type"
        default MARCH_Z196
          and 3906 series). The kernel will be slightly faster but will not
          work on older machines.
 
+config MARCH_Z15
+       bool "IBM z15"
+       select HAVE_MARCH_Z15_FEATURES
+       help
+         Select this to enable optimizations for IBM z15 (8562
+         and 8561 series). The kernel will be slightly faster but will not
+         work on older machines.
+
 endchoice
 
 config MARCH_Z900_TUNE
 config MARCH_Z14_TUNE
        def_bool TUNE_Z14 || MARCH_Z14 && TUNE_DEFAULT
 
+config MARCH_Z15_TUNE
+       def_bool TUNE_Z15 || MARCH_Z15 && TUNE_DEFAULT
+
 choice
        prompt "Tune code generation"
        default TUNE_DEFAULT
 config TUNE_Z14
        bool "IBM z14"
 
+config TUNE_Z15
+       bool "IBM z15"
+
 endchoice
 
 config 64BIT
 
 mflags-$(CONFIG_MARCH_ZEC12)  := -march=zEC12
 mflags-$(CONFIG_MARCH_Z13)    := -march=z13
 mflags-$(CONFIG_MARCH_Z14)    := -march=z14
+mflags-$(CONFIG_MARCH_Z15)    := -march=z15
 
 export CC_FLAGS_MARCH := $(mflags-y)
 
 cflags-$(CONFIG_MARCH_ZEC12_TUNE)      += -mtune=zEC12
 cflags-$(CONFIG_MARCH_Z13_TUNE)                += -mtune=z13
 cflags-$(CONFIG_MARCH_Z14_TUNE)                += -mtune=z14
+cflags-$(CONFIG_MARCH_Z15_TUNE)                += -mtune=z15
 
 cflags-y += -Wa,-I$(srctree)/arch/$(ARCH)/include
 
 
        case 0x3907:
                strcpy(elf_platform, "z14");
                break;
+       case 0x8561:
+       case 0x8562:
+               strcpy(elf_platform, "z15");
+               break;
        }
 
        /*
 
 #endif
 #ifdef CONFIG_HAVE_MARCH_Z14_FEATURES
                        58, /* miscellaneous-instruction-extension 2 */
+#endif
+#ifdef CONFIG_HAVE_MARCH_Z15_FEATURES
+                       61, /* miscellaneous-instruction-extension 3 */
 #endif
                        -1 /* END */
                }