#define MCP_TYPE_008   2
 #define MCP_TYPE_017   3
 #define MCP_TYPE_S18    4
+#define MCP_TYPE_018    5
 
 #define MCP_MAX_DEV_PER_CS     8
 
                mcp->chip.ngpio = 16;
                mcp->chip.label = "mcp23017";
                break;
+
+       case MCP_TYPE_018:
+               mcp->regmap = devm_regmap_init_i2c(data, &mcp23x17_regmap);
+               mcp->reg_shift = 1;
+               mcp->chip.ngpio = 16;
+               mcp->chip.label = "mcp23018";
+               break;
 #endif /* CONFIG_I2C */
 
        default:
                if (mirror)
                        status |= IOCON_MIRROR | (IOCON_MIRROR << 8);
 
-               if (type == MCP_TYPE_S18)
+               if (type == MCP_TYPE_S18 || type == MCP_TYPE_018)
                        status |= IOCON_INTCC | (IOCON_INTCC << 8);
 
                ret = mcp_write(mcp, MCP_IOCON, status);
                .compatible = "microchip,mcp23017",
                .data = (void *) MCP_TYPE_017,
        },
+       {
+               .compatible = "microchip,mcp23018",
+               .data = (void *) MCP_TYPE_018,
+       },
 /* NOTE: The use of the mcp prefix is deprecated and will be removed. */
        {
                .compatible = "mcp,mcp23008",
 static const struct i2c_device_id mcp230xx_id[] = {
        { "mcp23008", MCP_TYPE_008 },
        { "mcp23017", MCP_TYPE_017 },
+       { "mcp23018", MCP_TYPE_018 },
        { },
 };
 MODULE_DEVICE_TABLE(i2c, mcp230xx_id);