From 34292a930307fb4276838c7a8b412184817584db Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Sat, 10 Dec 2016 10:35:09 -0600 Subject: [PATCH] klte-common: Override consumerir header * Board flag is deprecated Change-Id: I3e1d685ec76a4221027a84d65fc70c998da62e1f Signed-off-by: Paul Keith --- BoardConfigCommon.mk | 3 --- include/samsung_consumerir.h | 47 ++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 include/samsung_consumerir.h diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index 371b981..7b5c722 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -59,9 +59,6 @@ VSYNC_EVENT_PHASE_OFFSET_NS := 7500000 # Legacy BLOB Support TARGET_NEEDS_PLATFORM_TEXT_RELOCATIONS := true -# IR Blaster -BOARD_USES_MS_IR_SIGNAL := true - # Partitions BOARD_FLASH_BLOCK_SIZE := 131072 TARGET_USERIMAGES_USE_EXT4 := true diff --git a/include/samsung_consumerir.h b/include/samsung_consumerir.h new file mode 100644 index 0000000..7b06067 --- /dev/null +++ b/include/samsung_consumerir.h @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2016 The CyanogenMod Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef SAMSUNG_CONSUMERIR_H +#define SAMSUNG_CONSUMERIR_H + +/* + * Board specific nodes + * + * If your kernel exposes these controls in another place, you can either + * symlink to the locations given here, or override this header in your + * device tree. + */ +#define IR_PATH "/sys/class/sec/sec_ir/ir_send" + +/* + * Board specific configs + * + * If your device needs a different configuration, you + * can override this header in your device tree + */ +// Some devices need MS_IR_SIGNAL to avoid ms to pulses conversionn +#define MS_IR_SIGNAL + +static const consumerir_freq_range_t consumerir_freqs[] = { + {.min = 30000, .max = 30000}, + {.min = 33000, .max = 33000}, + {.min = 36000, .max = 36000}, + {.min = 38000, .max = 38000}, + {.min = 40000, .max = 40000}, + {.min = 56000, .max = 56000}, +}; + +#endif // SAMSUNG_CONSUMERIR_H