blob: 5b5d4e7be7efff3a953e4401bf12d3f258811283 [file] [log] [blame]
David 'Digit' Turnerc5b12702009-06-19 00:36:12 +02001/* Copyright (C) 2009 The Android Open Source Project
2**
3** This software is licensed under the terms of the GNU General Public
4** License version 2, as published by the Free Software Foundation, and
5** may be copied, distributed, and modified under those terms.
6**
7** This program is distributed in the hope that it will be useful,
8** but WITHOUT ANY WARRANTY; without even the implied warranty of
9** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10** GNU General Public License for more details.
11*/
12#include "android/hw-lcd.h"
13#include "android/boot-properties.h"
14#include <stdio.h>
15
16void
17hwLcd_setBootProperty(int density)
18{
19 char temp[8];
20
Xavier Ducrohet049c72f2011-06-03 11:24:32 -070021 /* Map density to one of our five bucket values.
22 The TV density is a bit particular (and not actually a bucket
23 value) so we do only exact match on it.
24 */
25 if (density != LCD_DENSITY_TVDPI) {
26 if (density < (LCD_DENSITY_LDPI + LCD_DENSITY_MDPI)/2)
27 density = LCD_DENSITY_LDPI;
28 else if (density < (LCD_DENSITY_MDPI + LCD_DENSITY_HDPI)/2)
29 density = LCD_DENSITY_MDPI;
30 else if (density < (LCD_DENSITY_HDPI + LCD_DENSITY_XHDPI)/2)
31 density = LCD_DENSITY_HDPI;
Stuart Scott77fe7642014-01-13 10:25:20 -080032 else if (density < (LCD_DENSITY_XHDPI + LCD_DENSITY_400DPI)/2)
Xavier Ducrohet049c72f2011-06-03 11:24:32 -070033 density = LCD_DENSITY_XHDPI;
Stuart Scott77fe7642014-01-13 10:25:20 -080034 else if (density < (LCD_DENSITY_400DPI + LCD_DENSITY_XXHDPI)/2)
35 density = LCD_DENSITY_400DPI;
Deepanshu Gupta7703f552013-11-11 18:33:35 +053036 else if (density < (LCD_DENSITY_XXHDPI + LCD_DENSITY_XXXHDPI)/2)
37 density = LCD_DENSITY_XXHDPI;
38 else
39 density = LCD_DENSITY_XXXHDPI;
Xavier Ducrohet049c72f2011-06-03 11:24:32 -070040 }
David 'Digit' Turnerc5b12702009-06-19 00:36:12 +020041
42 snprintf(temp, sizeof temp, "%d", density);
43 boot_property_add("qemu.sf.lcd_density", temp);
44}
45