Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932654AbZKZEKs (ORCPT ); Wed, 25 Nov 2009 23:10:48 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932311AbZKZEKs (ORCPT ); Wed, 25 Nov 2009 23:10:48 -0500 Received: from mail-px0-f180.google.com ([209.85.216.180]:38825 "EHLO mail-px0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932223AbZKZEKq (ORCPT ); Wed, 25 Nov 2009 23:10:46 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=I/qShdjpiWhFynb+avTk9VpUmLCynmj+j5ck7WoK9oX88zp8p+F9Yls1eM9wT/TCga pwHOoSPMag1/iztBQ/Gh7HDrYXbihipi5im7+WwT7DRklTTbZfN+VHlS4KfsHvSZTaeD XNfhcXKl+AES9mSFzEYyEnMmFv6kGwWou1FM4= Date: Wed, 25 Nov 2009 20:10:47 -0800 From: Dmitry Torokhov To: Wu Zhangjin Cc: Ralf Baechle , linux-mips@linux-mips.org, Richard Purdie , lm-sensors@lm-sensors.org, linux-input@vger.kernel.org, linux-laptop@vger.kernel.org, Stephen Rothwell , sfr@linuxcare.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] [loongson] yeeloong2f: add platform specific support Message-ID: <20091126041047.GC23244@core.coreip.homeip.net> References: <9ef5a0038ec5e9b584be8c960693c434a323620a.1258803311.git.wuzhangjin@gmail.com> <9ef5a0038ec5e9b584be8c960693c434a323620a.1258803311.git.wuzhangjin@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9ef5a0038ec5e9b584be8c960693c434a323620a.1258803311.git.wuzhangjin@gmail.com> User-Agent: Mutt/1.5.19 (2009-01-05) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4832 Lines: 179 Hi Wu, Overall impression - several drivers crammed into one module, I wonder if it could be split somewhat. Some input-related concerns below. On Sat, Nov 21, 2009 at 08:08:40PM +0800, Wu Zhangjin wrote: > + > +/* hotkey input subdriver */ > + > +static struct input_dev *yeeloong_hotkey_dev; > +static int event, status; > + > +struct key_entry { > + char type; /* See KE_* below */ > + int event; /* event from SCI */ > + u16 keycode; /* KEY_* or SW_* */ > +}; > + > +enum { KE_KEY, KE_SW, KE_END }; I am going to post the sparse keymap library shortly, this driver could use it too... > + > +static struct key_entry yeeloong_keymap[] = { > + {KE_SW, EVENT_LID, SW_LID}, > + /* SW_VIDEOOUT_INSERT? not included in hald-addon-input! */ > + {KE_KEY, EVENT_CRT_DETECT, KEY_PROG1}, > + /* Seems battery subdriver should report it */ > + {KE_KEY, EVENT_OVERTEMP, KEY_PROG2}, Does not seem to be an input event? > + /*{KE_KEY, EVENT_AC_BAT, KEY_BATTERY},*/ > + {KE_KEY, EVENT_CAMERA, KEY_CAMERA}, /* Fn + ESC */ > + {KE_KEY, EVENT_SLEEP, KEY_SLEEP}, /* Fn + F1 */ > + /* Seems not clear? not included in hald-addon-input! */ > + {KE_KEY, EVENT_BLACK_SCREEN, KEY_PROG3}, /* Fn + F2 */ Do you mean "lock screen"? > + {KE_KEY, EVENT_DISPLAY_TOGGLE, KEY_SWITCHVIDEOMODE}, /* Fn + F3 */ > + {KE_KEY, EVENT_AUDIO_MUTE, KEY_MUTE}, /* Fn + F4 */ > + {KE_KEY, EVENT_WLAN, KEY_WLAN}, /* Fn + F5 */ > + {KE_KEY, EVENT_DISPLAY_BRIGHTNESS, KEY_BRIGHTNESSUP}, /* Fn + up */ > + {KE_KEY, EVENT_DISPLAY_BRIGHTNESS, KEY_BRIGHTNESSDOWN}, /* Fn + down */ > + {KE_KEY, EVENT_AUDIO_VOLUME, KEY_VOLUMEUP}, /* Fn + right */ > + {KE_KEY, EVENT_AUDIO_VOLUME, KEY_VOLUMEDOWN}, /* Fn + left */ > + {KE_END, 0} > +}; > + ... > + > +static ssize_t > +ignore_store(struct device *dev, > + struct device_attribute *attr, const char *buf, size_t count) > +{ > + return count; > +} > + > +static ssize_t > +show_hotkeystate(struct device *dev, struct device_attribute *attr, char *buf) > +{ > + return sprintf(buf, "%d %d\n", event, status); > +} > + > +static DEVICE_ATTR(state, 0444, show_hotkeystate, ignore_store); Why do you need "ignore_store" and not just use NULL? Also why do you need to export the state at all? > + > +static struct attribute *hotkey_attributes[] = { > + &dev_attr_state.attr, > + NULL > +}; > + > +static struct attribute_group hotkey_attribute_group = { > + .attrs = hotkey_attributes > +}; > + > +static int camera_set(int status) > +{ > + int value; > + static int camera_status; > + > + if (status == 2) > + /* resume the old camera status */ > + camera_set(camera_status); > + else if (status == 3) { > + /* revert the camera status */ > + value = ec_read(REG_CAMERA_CONTROL); > + ec_write(REG_CAMERA_CONTROL, value | (1 << 1)); > + } else {/* status == 0 or status == 1 */ > + status = !!status; > + camera_status = ec_read(REG_CAMERA_STATUS); > + if (status != camera_status) > + camera_set(3); > + } > + return ec_read(REG_CAMERA_STATUS); > +} > + > +#define I8042_STATUS_REG 0x64 > +#define I8042_DATA_REG 0x60 > +#define i8042_read_status() inb(I8042_STATUS_REG) > +#define i8042_read_data() inb(I8042_DATA_REG) > +#define I8042_STR_OBF 0x01 > +#define I8042_BUFFER_SIZE 16 > + > +static void i8042_flush(void) > +{ > + int i; > + > + while ((i8042_read_status() & I8042_STR_OBF) > + && (i < I8042_BUFFER_SIZE)) { > + udelay(50); > + i8042_read_data(); > + i++; > + } > +} > + > +static int yeeloong_hotkey_init(struct device *dev) > +{ > + int ret; > + struct key_entry *key; > + > + /* flush the buffer of keyboard */ > + i8042_flush(); Why??? Why does this driver tries to touch stuff that does not belong to it? > + > + /* setup the system control interface */ > + setup_sci(); No failures? > + > + yeeloong_hotkey_dev = input_allocate_device(); > + > + if (!yeeloong_hotkey_dev) > + return -ENOMEM; Error unwinding? > + > + yeeloong_hotkey_dev->name = "HotKeys"; > + yeeloong_hotkey_dev->phys = "button/input0"; > + yeeloong_hotkey_dev->id.bustype = BUS_HOST; > + yeeloong_hotkey_dev->dev.parent = dev; > + > + for (key = yeeloong_keymap; key->type != KE_END; key++) { > + switch (key->type) { > + case KE_KEY: > + set_bit(EV_KEY, yeeloong_hotkey_dev->evbit); > + set_bit(key->keycode, yeeloong_hotkey_dev->keybit); > + break; > + case KE_SW: > + set_bit(EV_SW, yeeloong_hotkey_dev->evbit); > + set_bit(key->keycode, yeeloong_hotkey_dev->swbit); > + break; > + } > + } > + > + ret = input_register_device(yeeloong_hotkey_dev); > + if (ret) { > + input_free_device(yeeloong_hotkey_dev); > + return ret; > + } -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/