#define DRIVER_MAJOR   1
 #define DRIVER_MINOR   0
 
+#define SSD130X_PAGE_HEIGHT 8
+
 #define SSD130X_PAGE_COL_START_LOW             0x00
 #define SSD130X_PAGE_COL_START_HIGH            0x10
 #define SSD130X_SET_ADDRESS_MODE               0x20
                .default_width = 132,
                .default_height = 64,
                .page_mode_only = 1,
-               .page_height = 8,
        },
        [SSD1305_ID] = {
                .default_vcomh = 0x34,
                .default_dclk_frq = 7,
                .default_width = 132,
                .default_height = 64,
-               .page_height = 8,
        },
        [SSD1306_ID] = {
                .default_vcomh = 0x20,
                .need_chargepump = 1,
                .default_width = 128,
                .default_height = 64,
-               .page_height = 8,
        },
        [SSD1307_ID] = {
                .default_vcomh = 0x20,
                .need_pwm = 1,
                .default_width = 128,
                .default_height = 39,
-               .page_height = 8,
        },
        [SSD1309_ID] = {
                .default_vcomh = 0x34,
                .default_dclk_frq = 10,
                .default_width = 128,
                .default_height = 64,
-               .page_height = 8,
        }
 };
 EXPORT_SYMBOL_NS_GPL(ssd130x_variants, DRM_SSD130X);
        unsigned int width = drm_rect_width(rect);
        unsigned int height = drm_rect_height(rect);
        unsigned int line_length = DIV_ROUND_UP(width, 8);
-       unsigned int page_height = ssd130x->device_info->page_height;
+       unsigned int page_height = SSD130X_PAGE_HEIGHT;
        unsigned int pages = DIV_ROUND_UP(height, page_height);
        struct drm_device *drm = &ssd130x->drm;
        u32 array_idx = 0;
        int ret, i, j, k;
 
-       drm_WARN_ONCE(drm, y % 8 != 0, "y must be aligned to screen page\n");
+       drm_WARN_ONCE(drm, y % page_height != 0, "y must be aligned to screen page\n");
 
        /*
         * The screen is divided in pages, each having a height of 8
         */
 
        if (!ssd130x->page_address_mode) {
+               u8 page_start;
+
                /* Set address range for horizontal addressing mode */
                ret = ssd130x_set_col_range(ssd130x, ssd130x->col_offset + x, width);
                if (ret < 0)
                        return ret;
 
-               ret = ssd130x_set_page_range(ssd130x, ssd130x->page_offset + y / 8, pages);
+               page_start = ssd130x->page_offset + y / page_height;
+               ret = ssd130x_set_page_range(ssd130x, page_start, pages);
                if (ret < 0)
                        return ret;
        }
 
        for (i = 0; i < pages; i++) {
-               int m = 8;
+               int m = page_height;
 
                /* Last page may be partial */
-               if (8 * (y / 8 + i + 1) > ssd130x->height)
-                       m = ssd130x->height % 8;
+               if (page_height * (y / page_height + i + 1) > ssd130x->height)
+                       m = ssd130x->height % page_height;
+
                for (j = 0; j < width; j++) {
                        u8 data = 0;
 
                        for (k = 0; k < m; k++) {
-                               u8 byte = buf[(8 * i + k) * line_length + j / 8];
+                               u32 idx = (page_height * i + k) * line_length + j / 8;
+                               u8 byte = buf[idx];
                                u8 bit = (byte >> (j % 8)) & 1;
 
                                data |= bit << k;
 
 static void ssd130x_clear_screen(struct ssd130x_device *ssd130x, u8 *data_array)
 {
-       unsigned int page_height = ssd130x->device_info->page_height;
-       unsigned int pages = DIV_ROUND_UP(ssd130x->height, page_height);
+       unsigned int pages = DIV_ROUND_UP(ssd130x->height, SSD130X_PAGE_HEIGHT);
        unsigned int width = ssd130x->width;
        int ret, i;
 
                                u8 *buf, u8 *data_array)
 {
        struct ssd130x_device *ssd130x = drm_to_ssd130x(fb->dev);
-       unsigned int page_height = ssd130x->device_info->page_height;
        struct iosys_map dst;
        unsigned int dst_pitch;
        int ret = 0;
 
        /* Align y to display page boundaries */
-       rect->y1 = round_down(rect->y1, page_height);
-       rect->y2 = min_t(unsigned int, round_up(rect->y2, page_height), ssd130x->height);
+       rect->y1 = round_down(rect->y1, SSD130X_PAGE_HEIGHT);
+       rect->y2 = min_t(unsigned int, round_up(rect->y2, SSD130X_PAGE_HEIGHT), ssd130x->height);
 
        dst_pitch = DIV_ROUND_UP(drm_rect_width(rect), 8);
 
        struct ssd130x_device *ssd130x = drm_to_ssd130x(drm);
        struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
        struct ssd130x_crtc_state *ssd130x_state = to_ssd130x_crtc_state(crtc_state);
-       unsigned int page_height = ssd130x->device_info->page_height;
-       unsigned int pages = DIV_ROUND_UP(ssd130x->height, page_height);
+       unsigned int pages = DIV_ROUND_UP(ssd130x->height, SSD130X_PAGE_HEIGHT);
        int ret;
 
        ret = drm_crtc_helper_atomic_check(crtc, state);