/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Copyright (C) 2013 by Amaury Pouly * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ #include #include "cpu.h" #include "kernel.h" #include "button-lradc-imx233.h" #include "lradc-imx233.h" #include "pinctrl-imx233.h" #ifndef IMX233_BUTTON_LRADC_CHANNEL # error You must define IMX233_BUTTON_LRADC_CHANNEL to use button-lradc #endif #if defined(HAS_BUTTON_HOLD) && !defined(IMX233_BUTTON_LRADC_HOLD_DET) # error You must defined IMX233_BUTTON_LRADC_HOLD_DET if you use hold #endif #if defined(IMX233_BUTTON_LRADC_HOLD_DET) && \ IMX233_BUTTON_LRADC_HOLD_DET == BLH_GPIO && \ (!defined(BLH_GPIO_BANK) || !defined(BLH_GPIO_PIN)) # error You must define BLH_GPIO_BANK and BLH_GPIO_PIN when detecting hold using GPIO #endif /* physical channel */ #define CHAN IMX233_BUTTON_LRADC_CHANNEL /* number of irq per second */ #ifdef IMX233_BUTTON_LRADC_RATE # define RATE IMX233_BUTTON_LRADC_RATE #else # define RATE HZ #endif /* number of samples per irq */ #ifdef IMX233_BUTTON_LRADC_SAMPLES # define SAMPLES IMX233_BUTTON_LRADC_SAMPLES #else # define SAMPLES 10 #endif /* delay's delay */ #define DELAY (LRADC_DELAY_FREQ / RATE / SAMPLES) #ifdef IMX233_BUTTON_LRADC_VDDIO #define HAS_VDDIO #endif static int button_delay; static int button_chan; static int button_val[2]; static int button_idx; static int button_mask; static int table_size; static int raw_val; #ifdef HAS_VDDIO static int vddio_chan; static int vddio_val; #endif static int delay_chan_mask; // trigger channel mask static int irq_chan_mask; // triggered channel mask static int button_find(int val) { #ifdef IMX233_BUTTON_LRADC_VDDIO val = (val * IMX233_BUTTON_LRADC_VDDIO) / vddio_val; #endif // shortcuts struct imx233_button_lradc_mapping_t *table = imx233_button_lradc_mapping; /* FIXME use a dichotomy */ int i = 0; while(i < table_size && val >= table[i].adc_val) i++; // extreme cases int btn = 0; // if i=n then choose i-1 and otherwise choose best between i-1 and i if(i == 0) btn = table[0].btn; else if(i == table_size) btn = table[i - 1].btn; // choose best between i-1 and i (note that table[i-1]<=val