pl111.hh (9395:bf428987f54e) pl111.hh (9415:f5d159450dfb)
1/*
2 * Copyright (c) 2010-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 82 unchanged lines hidden (view full) ---

91 static const int CrsrImageSize = 256;
92
93 static const int LcdMaxWidth = 1024; // pixels per line
94 static const int LcdMaxHeight = 768; // lines per panel
95
96 static const int dmaSize = 8; // 64 bits
97 static const int maxOutstandingDma = 16; // 16 deep FIFO of 64 bits
98
1/*
2 * Copyright (c) 2010-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 82 unchanged lines hidden (view full) ---

91 static const int CrsrImageSize = 256;
92
93 static const int LcdMaxWidth = 1024; // pixels per line
94 static const int LcdMaxHeight = 768; // lines per panel
95
96 static const int dmaSize = 8; // 64 bits
97 static const int maxOutstandingDma = 16; // 16 deep FIFO of 64 bits
98
99 static const int buffer_size = LcdMaxWidth * LcdMaxHeight * sizeof(uint32_t);
100
99 enum LcdMode {
100 bpp1 = 0,
101 bpp2,
102 bpp4,
103 bpp8,
104 bpp16,
105 bpp24,
106 bpp16m565,

--- 269 unchanged lines hidden ---
101 enum LcdMode {
102 bpp1 = 0,
103 bpp2,
104 bpp4,
105 bpp8,
106 bpp16,
107 bpp24,
108 bpp16m565,

--- 269 unchanged lines hidden ---