Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | // SPDX-License-Identifier: GPL-2.0+ /* * FB driver for the HX8340BN LCD Controller * * This display uses 9-bit SPI: Data/Command bit + 8 data bits * For platforms that doesn't support 9-bit, the driver is capable * of emulating this using 8-bit transfer. * This is done by transferring eight 9-bit words in 9 bytes. * * Copyright (C) 2013 Noralf Tronnes */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/vmalloc.h> #include <linux/spi/spi.h> #include <linux/delay.h> #include <video/mipi_display.h> #include "fbtft.h" #define DRVNAME "fb_hx8340bn" #define WIDTH 176 #define HEIGHT 220 #define TXBUFLEN (4 * PAGE_SIZE) #define DEFAULT_GAMMA "1 3 0E 5 0 2 09 0 6 1 7 1 0 2 2\n" \ "3 3 17 8 4 7 05 7 6 0 3 1 6 0 0 " static bool emulate; module_param(emulate, bool, 0000); MODULE_PARM_DESC(emulate, "Force emulation in 9-bit mode"); static int init_display(struct fbtft_par *par) { par->fbtftops.reset(par); /* BTL221722-276L startup sequence, from datasheet */ /* * SETEXTCOM: Set extended command set (C1h) * This command is used to set extended command set access enable. * Enable: After command (C1h), must write: ffh,83h,40h */ write_reg(par, 0xC1, 0xFF, 0x83, 0x40); /* * Sleep out * This command turns off sleep mode. * In this mode the DC/DC converter is enabled, Internal oscillator * is started, and panel scanning is started. */ write_reg(par, 0x11); mdelay(150); /* Undoc'd register? */ write_reg(par, 0xCA, 0x70, 0x00, 0xD9); /* * SETOSC: Set Internal Oscillator (B0h) * This command is used to set internal oscillator related settings * OSC_EN: Enable internal oscillator * Internal oscillator frequency: 125% x 2.52MHz */ write_reg(par, 0xB0, 0x01, 0x11); /* Drive ability setting */ write_reg(par, 0xC9, 0x90, 0x49, 0x10, 0x28, 0x28, 0x10, 0x00, 0x06); mdelay(20); /* * SETPWCTR5: Set Power Control 5(B5h) * This command is used to set VCOM Low and VCOM High Voltage * VCOMH 0110101 : 3.925 * VCOML 0100000 : -1.700 * 45h=69 VCOMH: "VMH" + 5d VCOML: "VMH" + 5d */ write_reg(par, 0xB5, 0x35, 0x20, 0x45); /* * SETPWCTR4: Set Power Control 4(B4h) * VRH[4:0]: Specify the VREG1 voltage adjusting. * VREG1 voltage is for gamma voltage setting. * BT[2:0]: Switch the output factor of step-up circuit 2 * for VGH and VGL voltage generation. */ write_reg(par, 0xB4, 0x33, 0x25, 0x4C); mdelay(10); /* * Interface Pixel Format (3Ah) * This command is used to define the format of RGB picture data, * which is to be transfer via the system and RGB interface. * RGB interface: 16 Bit/Pixel */ write_reg(par, MIPI_DCS_SET_PIXEL_FORMAT, MIPI_DCS_PIXEL_FMT_16BIT); /* * Display on (29h) * This command is used to recover from DISPLAY OFF mode. * Output from the Frame Memory is enabled. */ write_reg(par, MIPI_DCS_SET_DISPLAY_ON); mdelay(10); return 0; } static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) { write_reg(par, MIPI_DCS_SET_COLUMN_ADDRESS, 0x00, xs, 0x00, xe); write_reg(par, MIPI_DCS_SET_PAGE_ADDRESS, 0x00, ys, 0x00, ye); write_reg(par, MIPI_DCS_WRITE_MEMORY_START); } static int set_var(struct fbtft_par *par) { /* MADCTL - Memory data access control */ /* RGB/BGR can be set with H/W pin SRGB and MADCTL BGR bit */ #define MY BIT(7) #define MX BIT(6) #define MV BIT(5) switch (par->info->var.rotate) { case 0: write_reg(par, MIPI_DCS_SET_ADDRESS_MODE, par->bgr << 3); break; case 270: write_reg(par, MIPI_DCS_SET_ADDRESS_MODE, MX | MV | (par->bgr << 3)); break; case 180: write_reg(par, MIPI_DCS_SET_ADDRESS_MODE, MX | MY | (par->bgr << 3)); break; case 90: write_reg(par, MIPI_DCS_SET_ADDRESS_MODE, MY | MV | (par->bgr << 3)); break; } return 0; } /* * Gamma Curve selection, GC (only GC0 can be customized): * 0 = 2.2, 1 = 1.8, 2 = 2.5, 3 = 1.0 * Gamma string format: * OP0 OP1 CP0 CP1 CP2 CP3 CP4 MP0 MP1 MP2 MP3 MP4 MP5 CGM0 CGM1 * ON0 ON1 CN0 CN1 CN2 CN3 CN4 MN0 MN1 MN2 MN3 MN4 MN5 XXXX GC */ #define CURVE(num, idx) curves[(num) * par->gamma.num_values + (idx)] static int set_gamma(struct fbtft_par *par, u32 *curves) { static const unsigned long mask[] = { 0x0f, 0x0f, 0x1f, 0x0f, 0x0f, 0x0f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x03, 0x03, 0x0f, 0x0f, 0x1f, 0x0f, 0x0f, 0x0f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x00, 0x00, }; int i, j; /* apply mask */ for (i = 0; i < par->gamma.num_curves; i++) for (j = 0; j < par->gamma.num_values; j++) CURVE(i, j) &= mask[i * par->gamma.num_values + j]; /* Gamma Set (26h) */ write_reg(par, MIPI_DCS_SET_GAMMA_CURVE, 1 << CURVE(1, 14)); if (CURVE(1, 14)) return 0; /* only GC0 can be customized */ write_reg(par, 0xC2, (CURVE(0, 8) << 4) | CURVE(0, 7), (CURVE(0, 10) << 4) | CURVE(0, 9), (CURVE(0, 12) << 4) | CURVE(0, 11), CURVE(0, 2), (CURVE(0, 4) << 4) | CURVE(0, 3), CURVE(0, 5), CURVE(0, 6), (CURVE(0, 1) << 4) | CURVE(0, 0), (CURVE(0, 14) << 2) | CURVE(0, 13)); write_reg(par, 0xC3, (CURVE(1, 8) << 4) | CURVE(1, 7), (CURVE(1, 10) << 4) | CURVE(1, 9), (CURVE(1, 12) << 4) | CURVE(1, 11), CURVE(1, 2), (CURVE(1, 4) << 4) | CURVE(1, 3), CURVE(1, 5), CURVE(1, 6), (CURVE(1, 1) << 4) | CURVE(1, 0)); mdelay(10); return 0; } #undef CURVE static struct fbtft_display display = { .regwidth = 8, .width = WIDTH, .height = HEIGHT, .txbuflen = TXBUFLEN, .gamma_num = 2, .gamma_len = 15, .gamma = DEFAULT_GAMMA, .fbtftops = { .init_display = init_display, .set_addr_win = set_addr_win, .set_var = set_var, .set_gamma = set_gamma, }, }; FBTFT_REGISTER_DRIVER(DRVNAME, "himax,hx8340bn", &display); MODULE_ALIAS("spi:" DRVNAME); MODULE_ALIAS("platform:" DRVNAME); MODULE_ALIAS("spi:hx8340bn"); MODULE_ALIAS("platform:hx8340bn"); MODULE_DESCRIPTION("FB driver for the HX8340BN LCD Controller"); MODULE_AUTHOR("Noralf Tronnes"); MODULE_LICENSE("GPL"); |