blob: 301e4a3626e9987b8fdac30ec5667b8d2eb6ea15 [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;
Deepanshu Gupta7703f552013-11-11 18:33:35 +053032 else if (density < (LCD_DENSITY_XHDPI + LCD_DENSITY_XXHDPI)/2)
Xavier Ducrohet049c72f2011-06-03 11:24:32 -070033 density = LCD_DENSITY_XHDPI;
Deepanshu Gupta7703f552013-11-11 18:33:35 +053034 else if (density < (LCD_DENSITY_XXHDPI + LCD_DENSITY_XXXHDPI)/2)
35 density = LCD_DENSITY_XXHDPI;
36 else
37 density = LCD_DENSITY_XXXHDPI;
Xavier Ducrohet049c72f2011-06-03 11:24:32 -070038 }
David 'Digit' Turnerc5b12702009-06-19 00:36:12 +020039
40 snprintf(temp, sizeof temp, "%d", density);
41 boot_property_add("qemu.sf.lcd_density", temp);
42}
43