1 /* sane - Scanner Access Now Easy. 2 3 Copyright (C) 2019 Povilas Kanapickas <povilas@radix.lt> 4 5 This file is part of the SANE package. 6 7 This program is free software; you can redistribute it and/or 8 modify it under the terms of the GNU General Public License as 9 published by the Free Software Foundation; either version 2 of the 10 License, or (at your option) any later version. 11 12 This program is distributed in the hope that it will be useful, but 13 WITHOUT ANY WARRANTY; without even the implied warranty of 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 General Public License for more details. 16 17 You should have received a copy of the GNU General Public License 18 along with this program. If not, see <https://www.gnu.org/licenses/>. 19 */ 20 21 #ifndef BACKEND_GENESYS_GL846_REGISTERS_H 22 #define BACKEND_GENESYS_GL846_REGISTERS_H 23 24 #include <cstdint> 25 26 namespace genesys { 27 namespace gl846 { 28 29 using RegAddr = std::uint16_t; 30 using RegMask = std::uint8_t; 31 using RegShift = unsigned; 32 33 static constexpr RegAddr REG_0x01 = 0x01; 34 static constexpr RegMask REG_0x01_CISSET = 0x80; 35 static constexpr RegMask REG_0x01_DOGENB = 0x40; 36 static constexpr RegMask REG_0x01_DVDSET = 0x20; 37 static constexpr RegMask REG_0x01_STAGGER = 0x10; 38 static constexpr RegMask REG_0x01_COMPENB = 0x08; 39 static constexpr RegMask REG_0x01_TRUEGRAY = 0x04; 40 static constexpr RegMask REG_0x01_SHDAREA = 0x02; 41 static constexpr RegMask REG_0x01_SCAN = 0x01; 42 43 static constexpr RegAddr REG_0x02 = 0x02; 44 static constexpr RegMask REG_0x02_NOTHOME = 0x80; 45 static constexpr RegMask REG_0x02_ACDCDIS = 0x40; 46 static constexpr RegMask REG_0x02_AGOHOME = 0x20; 47 static constexpr RegMask REG_0x02_MTRPWR = 0x10; 48 static constexpr RegMask REG_0x02_FASTFED = 0x08; 49 static constexpr RegMask REG_0x02_MTRREV = 0x04; 50 static constexpr RegMask REG_0x02_HOMENEG = 0x02; 51 static constexpr RegMask REG_0x02_LONGCURV = 0x01; 52 53 static constexpr RegAddr REG_0x03 = 0x03; 54 static constexpr RegMask REG_0x03_LAMPDOG = 0x80; 55 static constexpr RegMask REG_0x03_AVEENB = 0x40; 56 static constexpr RegMask REG_0x03_XPASEL = 0x20; 57 static constexpr RegMask REG_0x03_LAMPPWR = 0x10; 58 static constexpr RegMask REG_0x03_LAMPTIM = 0x0f; 59 60 static constexpr RegAddr REG_0x04 = 0x04; 61 static constexpr RegMask REG_0x04_LINEART = 0x80; 62 static constexpr RegMask REG_0x04_BITSET = 0x40; 63 static constexpr RegMask REG_0x04_AFEMOD = 0x30; 64 static constexpr RegMask REG_0x04_FILTER = 0x0c; 65 static constexpr RegMask REG_0x04_FESET = 0x03; 66 67 static constexpr RegShift REG_0x04S_AFEMOD = 4; 68 69 static constexpr RegAddr REG_0x05 = 0x05; 70 static constexpr RegMask REG_0x05_DPIHW = 0xc0; 71 static constexpr RegMask REG_0x05_DPIHW_600 = 0x00; 72 static constexpr RegMask REG_0x05_DPIHW_1200 = 0x40; 73 static constexpr RegMask REG_0x05_DPIHW_2400 = 0x80; 74 static constexpr RegMask REG_0x05_DPIHW_4800 = 0xc0; 75 static constexpr RegMask REG_0x05_MTLLAMP = 0x30; 76 static constexpr RegMask REG_0x05_GMMENB = 0x08; 77 static constexpr RegMask REG_0x05_MTLBASE = 0x03; 78 79 static constexpr RegAddr REG_0x06 = 0x06; 80 static constexpr RegMask REG_0x06_SCANMOD = 0xe0; 81 static constexpr RegShift REG_0x06S_SCANMOD = 5; 82 static constexpr RegMask REG_0x06_PWRBIT = 0x10; 83 static constexpr RegMask REG_0x06_GAIN4 = 0x08; 84 static constexpr RegMask REG_0x06_OPTEST = 0x07; 85 86 static constexpr RegMask REG_0x07_LAMPSIM = 0x80; 87 88 static constexpr RegMask REG_0x08_DRAM2X = 0x80; 89 static constexpr RegMask REG_0x08_MPENB = 0x20; 90 static constexpr RegMask REG_0x08_CIS_LINE = 0x10; 91 static constexpr RegMask REG_0x08_IR1ENB = 0x08; 92 static constexpr RegMask REG_0x08_IR2ENB = 0x04; 93 static constexpr RegMask REG_0x08_ENB24M = 0x01; 94 95 static constexpr RegMask REG_0x09_MCNTSET = 0xc0; 96 static constexpr RegMask REG_0x09_EVEN1ST = 0x20; 97 static constexpr RegMask REG_0x09_BLINE1ST = 0x10; 98 static constexpr RegMask REG_0x09_BACKSCAN = 0x08; 99 static constexpr RegMask REG_0x09_ENHANCE = 0x04; 100 static constexpr RegMask REG_0x09_SHORTTG = 0x02; 101 static constexpr RegMask REG_0x09_NWAIT = 0x01; 102 103 static constexpr RegShift REG_0x09S_MCNTSET = 6; 104 static constexpr RegShift REG_0x09S_CLKSET = 4; 105 106 107 static constexpr RegAddr REG_0x0A_LPWMEN = 0x10; 108 109 static constexpr RegAddr REG_0x0B = 0x0b; 110 static constexpr RegMask REG_0x0B_DRAMSEL = 0x07; 111 static constexpr RegMask REG_0x0B_ENBDRAM = 0x08; 112 static constexpr RegMask REG_0x0B_RFHDIS = 0x10; 113 static constexpr RegMask REG_0x0B_CLKSET = 0xe0; 114 static constexpr RegMask REG_0x0B_24MHZ = 0x00; 115 static constexpr RegMask REG_0x0B_30MHZ = 0x20; 116 static constexpr RegMask REG_0x0B_40MHZ = 0x40; 117 static constexpr RegMask REG_0x0B_48MHZ = 0x60; 118 static constexpr RegMask REG_0x0B_60MHZ = 0x80; 119 120 static constexpr RegAddr REG_0x0C = 0x0c; 121 static constexpr RegMask REG_0x0C_CCDLMT = 0x0f; 122 123 static constexpr RegAddr REG_0x0D = 0x0d; 124 static constexpr RegMask REG_0x0D_SCSYNC = 0x40; 125 static constexpr RegMask REG_0x0D_CLRERR = 0x20; 126 static constexpr RegMask REG_0x0D_FULLSTP = 0x10; 127 static constexpr RegMask REG_0x0D_SEND = 0x80; 128 static constexpr RegMask REG_0x0D_CLRMCNT = 0x04; 129 static constexpr RegMask REG_0x0D_CLRDOCJM = 0x02; 130 static constexpr RegMask REG_0x0D_CLRLNCNT = 0x01; 131 132 static constexpr RegAddr REG_0x0F = 0x0f; 133 134 static constexpr RegMask REG_0x16_CTRLHI = 0x80; 135 static constexpr RegMask REG_0x16_TOSHIBA = 0x40; 136 static constexpr RegMask REG_0x16_TGINV = 0x20; 137 static constexpr RegMask REG_0x16_CK1INV = 0x10; 138 static constexpr RegMask REG_0x16_CK2INV = 0x08; 139 static constexpr RegMask REG_0x16_CTRLINV = 0x04; 140 static constexpr RegMask REG_0x16_CKDIS = 0x02; 141 static constexpr RegMask REG_0x16_CTRLDIS = 0x01; 142 143 static constexpr RegMask REG_0x17_TGMODE = 0xc0; 144 static constexpr RegMask REG_0x17_TGMODE_NO_DUMMY = 0x00; 145 static constexpr RegMask REG_0x17_TGMODE_REF = 0x40; 146 static constexpr RegMask REG_0x17_TGMODE_XPA = 0x80; 147 static constexpr RegMask REG_0x17_TGW = 0x3f; 148 static constexpr RegAddr REG_0x17S_TGW = 0; 149 150 static constexpr RegAddr REG_0x18 = 0x18; 151 static constexpr RegMask REG_0x18_CNSET = 0x80; 152 static constexpr RegMask REG_0x18_DCKSEL = 0x60; 153 static constexpr RegMask REG_0x18_CKTOGGLE = 0x10; 154 static constexpr RegMask REG_0x18_CKDELAY = 0x0c; 155 static constexpr RegMask REG_0x18_CKSEL = 0x03; 156 157 static constexpr RegMask REG_0x1A_SW2SET = 0x80; 158 static constexpr RegMask REG_0x1A_SW1SET = 0x40; 159 static constexpr RegMask REG_0x1A_MANUAL3 = 0x02; 160 static constexpr RegMask REG_0x1A_MANUAL1 = 0x01; 161 static constexpr RegMask REG_0x1A_CK4INV = 0x08; 162 static constexpr RegMask REG_0x1A_CK3INV = 0x04; 163 static constexpr RegMask REG_0x1A_LINECLP = 0x02; 164 165 static constexpr RegAddr REG_0x1C = 0x1c; 166 static constexpr RegMask REG_0x1C_TGTIME = 0x07; 167 168 static constexpr RegMask REG_0x1D_CK4LOW = 0x80; 169 static constexpr RegMask REG_0x1D_CK3LOW = 0x40; 170 static constexpr RegMask REG_0x1D_CK1LOW = 0x20; 171 static constexpr RegMask REG_0x1D_TGSHLD = 0x1f; 172 static constexpr RegShift REG_0x1DS_TGSHLD = 0; 173 174 static constexpr RegAddr REG_0x1E = 0x1e; 175 static constexpr RegMask REG_0x1E_WDTIME = 0xf0; 176 static constexpr RegShift REG_0x1ES_WDTIME = 4; 177 static constexpr RegMask REG_0x1E_LINESEL = 0x0f; 178 static constexpr RegShift REG_0x1ES_LINESEL = 0; 179 180 static constexpr RegAddr REG_FEDCNT = 0x1f; 181 182 static constexpr RegAddr REG_0x24 = 0x1c; 183 static constexpr RegAddr REG_0x40 = 0x40; 184 static constexpr RegMask REG_0x40_DOCSNR = 0x80; 185 static constexpr RegMask REG_0x40_ADFSNR = 0x40; 186 static constexpr RegMask REG_0x40_COVERSNR = 0x20; 187 static constexpr RegMask REG_0x40_CHKVER = 0x10; 188 static constexpr RegMask REG_0x40_DOCJAM = 0x08; 189 static constexpr RegMask REG_0x40_HISPDFLG = 0x04; 190 static constexpr RegMask REG_0x40_MOTMFLG = 0x02; 191 static constexpr RegMask REG_0x40_DATAENB = 0x01; 192 193 static constexpr RegMask REG_0x41_PWRBIT = 0x80; 194 static constexpr RegMask REG_0x41_BUFEMPTY = 0x40; 195 static constexpr RegMask REG_0x41_FEEDFSH = 0x20; 196 static constexpr RegMask REG_0x41_SCANFSH = 0x10; 197 static constexpr RegMask REG_0x41_HOMESNR = 0x08; 198 static constexpr RegMask REG_0x41_LAMPSTS = 0x04; 199 static constexpr RegMask REG_0x41_FEBUSY = 0x02; 200 static constexpr RegMask REG_0x41_MOTORENB = 0x01; 201 202 static constexpr RegMask REG_0x58_VSMP = 0xf8; 203 static constexpr RegShift REG_0x58S_VSMP = 3; 204 static constexpr RegMask REG_0x58_VSMPW = 0x07; 205 static constexpr RegAddr REG_0x58S_VSMPW = 0; 206 207 static constexpr RegMask REG_0x59_BSMP = 0xf8; 208 static constexpr RegAddr REG_0x59S_BSMP = 3; 209 static constexpr RegMask REG_0x59_BSMPW = 0x07; 210 static constexpr RegShift REG_0x59S_BSMPW = 0; 211 212 static constexpr RegMask REG_0x5A_ADCLKINV = 0x80; 213 static constexpr RegMask REG_0x5A_RLCSEL = 0x40; 214 static constexpr RegMask REG_0x5A_CDSREF = 0x30; 215 static constexpr RegShift REG_0x5AS_CDSREF = 4; 216 static constexpr RegMask REG_0x5A_RLC = 0x0f; 217 static constexpr RegShift REG_0x5AS_RLC = 0; 218 219 static constexpr RegMask REG_0x5E_DECSEL = 0xe0; 220 static constexpr RegShift REG_0x5ES_DECSEL = 5; 221 static constexpr RegMask REG_0x5E_STOPTIM = 0x1f; 222 static constexpr RegShift REG_0x5ES_STOPTIM = 0; 223 224 static constexpr RegAddr REG_0x60 = 0x60; 225 static constexpr RegMask REG_0x60_Z1MOD = 0x1f; 226 static constexpr RegAddr REG_0x61 = 0x61; 227 static constexpr RegMask REG_0x61_Z1MOD = 0xff; 228 static constexpr RegAddr REG_0x62 = 0x62; 229 static constexpr RegMask REG_0x62_Z1MOD = 0xff; 230 231 static constexpr RegAddr REG_0x63 = 0x63; 232 static constexpr RegMask REG_0x63_Z2MOD = 0x1f; 233 static constexpr RegAddr REG_0x64 = 0x64; 234 static constexpr RegMask REG_0x64_Z2MOD = 0xff; 235 static constexpr RegAddr REG_0x65 = 0x65; 236 static constexpr RegMask REG_0x65_Z2MOD = 0xff; 237 238 static constexpr RegShift REG_0x60S_STEPSEL = 5; 239 static constexpr RegMask REG_0x60_STEPSEL = 0xe0; 240 static constexpr RegMask REG_0x60_FULLSTEP = 0x00; 241 static constexpr RegMask REG_0x60_HALFSTEP = 0x20; 242 static constexpr RegMask REG_0x60_EIGHTHSTEP = 0x60; 243 static constexpr RegMask REG_0x60_16THSTEP = 0x80; 244 245 static constexpr RegShift REG_0x63S_FSTPSEL = 5; 246 static constexpr RegMask REG_0x63_FSTPSEL = 0xe0; 247 static constexpr RegMask REG_0x63_FULLSTEP = 0x00; 248 static constexpr RegMask REG_0x63_HALFSTEP = 0x20; 249 static constexpr RegMask REG_0x63_EIGHTHSTEP = 0x60; 250 static constexpr RegMask REG_0x63_16THSTEP = 0x80; 251 252 static constexpr RegAddr REG_0x67 = 0x67; 253 static constexpr RegMask REG_0x67_MTRPWM = 0x80; 254 255 static constexpr RegAddr REG_0x68 = 0x68; 256 static constexpr RegMask REG_0x68_FASTPWM = 0x80; 257 258 static constexpr RegAddr REG_0x6B = 0x6b; 259 static constexpr RegMask REG_0x6B_MULTFILM = 0x80; 260 static constexpr RegMask REG_0x6B_GPOM13 = 0x40; 261 static constexpr RegMask REG_0x6B_GPOM12 = 0x20; 262 static constexpr RegMask REG_0x6B_GPOM11 = 0x10; 263 static constexpr RegMask REG_0x6B_GPO18 = 0x02; 264 static constexpr RegMask REG_0x6B_GPO17 = 0x01; 265 266 static constexpr RegAddr REG_0x6C = 0x6c; 267 static constexpr RegMask REG_0x6C_GPIO16 = 0x80; 268 static constexpr RegMask REG_0x6C_GPIO15 = 0x40; 269 static constexpr RegMask REG_0x6C_GPIO14 = 0x20; 270 static constexpr RegMask REG_0x6C_GPIO13 = 0x10; 271 static constexpr RegMask REG_0x6C_GPIO12 = 0x08; 272 static constexpr RegMask REG_0x6C_GPIO11 = 0x04; 273 static constexpr RegMask REG_0x6C_GPIO10 = 0x02; 274 static constexpr RegMask REG_0x6C_GPIO9 = 0x01; 275 static constexpr RegMask REG_0x6C_GPIOH = 0xff; 276 static constexpr RegMask REG_0x6C_GPIOL = 0xff; 277 278 static constexpr RegAddr REG_0x6D = 0x6d; 279 static constexpr RegAddr REG_0x6E = 0x6e; 280 static constexpr RegAddr REG_0x6F = 0x6f; 281 static constexpr RegAddr REG_0x7E = 0x7e; 282 283 static constexpr RegAddr REG_0x80 = 0x80; 284 static constexpr RegMask REG_0x80_TABLE1_NORMAL = 0x03; 285 static constexpr RegShift REG_0x80S_TABLE1_NORMAL = 0; 286 static constexpr RegMask REG_0x80_TABLE2_BACK = 0x0c; 287 static constexpr RegShift REG_0x80S_TABLE2_BACK = 2; 288 static constexpr RegMask REG_0x80_TABLE4_FAST = 0x30; 289 static constexpr RegShift REG_0x80S_TABLE4_FAST = 4; 290 static constexpr RegMask REG_0x80_TABLE5_GO_HOME = 0xc0; 291 static constexpr RegShift REG_0x80S_TABLE5_GO_HOME = 6; 292 293 static constexpr RegMask REG_0x87_ACYCNRLC = 0x10; 294 static constexpr RegMask REG_0x87_ENOFFSET = 0x08; 295 static constexpr RegMask REG_0x87_LEDADD = 0x04; 296 static constexpr RegMask REG_0x87_CK4ADC = 0x02; 297 static constexpr RegMask REG_0x87_AUTOCONF = 0x01; 298 299 static constexpr RegAddr REG_0x9E = 0x9e; 300 static constexpr RegAddr REG_0x9F = 0x9f; 301 302 static constexpr RegAddr REG_0xA6 = 0xa6; 303 static constexpr RegAddr REG_0xA7 = 0xa7; 304 static constexpr RegAddr REG_0xA8 = 0xa8; 305 static constexpr RegAddr REG_0xA9 = 0xa9; 306 static constexpr RegAddr REG_0xAB = 0xab; 307 308 static constexpr RegAddr REG_EXPR = 0x10; 309 static constexpr RegAddr REG_EXPG = 0x12; 310 static constexpr RegAddr REG_EXPB = 0x14; 311 static constexpr RegAddr REG_EXPDMY = 0x19; 312 static constexpr RegAddr REG_STEPNO = 0x21; 313 static constexpr RegAddr REG_FWDSTEP = 0x22; 314 static constexpr RegAddr REG_BWDSTEP = 0x23; 315 static constexpr RegAddr REG_FASTNO = 0x24; 316 static constexpr RegAddr REG_DPISET = 0x2c; 317 static constexpr RegAddr REG_STRPIXEL = 0x30; 318 static constexpr RegAddr REG_ENDPIXEL = 0x32; 319 static constexpr RegAddr REG_LINCNT = 0x25; 320 static constexpr RegAddr REG_MAXWD = 0x35; 321 static constexpr RegAddr REG_LPERIOD = 0x38; 322 static constexpr RegAddr REG_FEEDL = 0x3d; 323 static constexpr RegAddr REG_FMOVDEC = 0x5f; 324 static constexpr RegAddr REG_FSHDEC = 0x69; 325 static constexpr RegAddr REG_FMOVNO = 0x6a; 326 static constexpr RegAddr REG_CK1MAP = 0x74; 327 static constexpr RegAddr REG_CK3MAP = 0x77; 328 static constexpr RegAddr REG_CK4MAP = 0x7a; 329 330 static constexpr RegAddr REG_0xF8 = 0xf8; 331 static constexpr RegMask REG_0xF8_MAXSEL = 0xf0; 332 static constexpr RegShift REG_0xF8_SMAXSEL = 4; 333 static constexpr RegMask REG_0xF8_MINSEL = 0x0f; 334 335 } // namespace gl846 336 } // namespace genesys 337 338 #endif // BACKEND_GENESYS_GL846_REGISTERS_H 339