* (unknown)
@ 2009-07-27 16:23 vivianofferplc013-+MseY0pMZYIAvxtiuMwx3w
0 siblings, 0 replies; 45+ messages in thread
From: vivianofferplc013-+MseY0pMZYIAvxtiuMwx3w @ 2009-07-27 16:23 UTC (permalink / raw)
This is a Financial Service Announcement, we offer loan to all in need,ranging from $5000 to $800,000.00 USD. Our interest rate is 3% and our service and terms are dependable. any interested person should apply via email:lapoloanlender-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
@ 2010-04-14 12:54 Alan Cox
0 siblings, 0 replies; 45+ messages in thread
From: Alan Cox @ 2010-04-14 12:54 UTC (permalink / raw)
To: linux-i2c, khali, linux-input, linux-kernel
Subject: [FOR COMMENT] cy8ctmg110 for review
From: Samuli Konttila <samuli.konttila@aavamobile.com>
Add support for the cy8ctmg110 capacitive touchscreen used on some embedded
devices.
(Some clean up by Alan Cox)
(No signed off, not yet ready to go in)
---
drivers/input/touchscreen/Kconfig | 12 +
drivers/input/touchscreen/Makefile | 3
drivers/input/touchscreen/cy8ctmg110_ts.c | 521 +++++++++++++++++++++++++++++
3 files changed, 535 insertions(+), 1 deletions(-)
create mode 100644 drivers/input/touchscreen/cy8ctmg110_ts.c
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
index b3ba374..89a3eb1 100644
--- a/drivers/input/touchscreen/Kconfig
+++ b/drivers/input/touchscreen/Kconfig
@@ -591,4 +591,16 @@ config TOUCHSCREEN_TPS6507X
To compile this driver as a module, choose M here: the
module will be called tps6507x_ts.
+config TOUCHSCREEN_CY8CTMG110
+ tristate "cy8ctmg110 touchscreen"
+ depends on I2C
+ help
+ Say Y here if you have a cy8ctmg110 touchscreen capacitive
+ touchscreen
+
+ If unsure, say N.
+
+ To compile this driver as a module, choose M here: the
+ module will be called cy8ctmg110_ts.
+
endif
diff --git a/drivers/input/touchscreen/Makefile b/drivers/input/touchscreen/Makefile
index dfb7239..c7acb65 100644
--- a/drivers/input/touchscreen/Makefile
+++ b/drivers/input/touchscreen/Makefile
@@ -1,5 +1,5 @@
#
-# Makefile for the touchscreen drivers.
+# Makefile for the touchscreen drivers.mororor
#
# Each configuration option enables a list of files.
@@ -12,6 +12,7 @@ obj-$(CONFIG_TOUCHSCREEN_AD7879) += ad7879.o
obj-$(CONFIG_TOUCHSCREEN_ADS7846) += ads7846.o
obj-$(CONFIG_TOUCHSCREEN_ATMEL_TSADCC) += atmel_tsadcc.o
obj-$(CONFIG_TOUCHSCREEN_BITSY) += h3600_ts_input.o
+obj-$(CONFIG_TOUCHSCREEN_CY8CTMG110) += cy8ctmg110_ts.o
obj-$(CONFIG_TOUCHSCREEN_DYNAPRO) += dynapro.o
obj-$(CONFIG_TOUCHSCREEN_GUNZE) += gunze.o
obj-$(CONFIG_TOUCHSCREEN_EETI) += eeti_ts.o
diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c
new file mode 100644
index 0000000..4adbe87
--- /dev/null
+++ b/drivers/input/touchscreen/cy8ctmg110_ts.c
@@ -0,0 +1,521 @@
+/*
+ * cy8ctmg110_ts.c Driver for cypress touch screen controller
+ * Copyright (c) 2009 Aava Mobile
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <linux/module.h>
+#include <linux/kernel.h>
+#include <linux/input.h>
+#include <linux/slab.h>
+#include <linux/interrupt.h>
+#include <asm/io.h>
+#include <linux/i2c.h>
+#include <linux/timer.h>
+#include <linux/gpio.h>
+#include <linux/hrtimer.h>
+
+#include <linux/platform_device.h>
+#include <linux/delay.h>
+#include <linux/fs.h>
+#include <asm/ioctl.h>
+#include <asm/uaccess.h>
+#include <linux/device.h>
+#include <linux/module.h>
+#include <linux/platform_device.h>
+#include <linux/delay.h>
+#include <linux/fs.h>
+#include <asm/ioctl.h>
+#include <linux/fs.h>
+#include <linux/init.h>
+#include <linux/miscdevice.h>
+#include <linux/module.h>
+
+
+#define CY8CTMG110_DRIVER_NAME "cy8ctmg110"
+
+
+/*HW definations*/
+#define CY8CTMG110_RESET_PIN_GPIO 43
+#define CY8CTMG110_IRQ_PIN_GPIO 59
+#define CY8CTMG110_I2C_ADDR 0x38
+#define CY8CTMG110_I2C_ADDR_EXT 0x39
+#define CY8CTMG110_I2C_ADDR_ 0x2 /*i2c address first sample */
+#define CY8CTMG110_I2C_ADDR__ 53 /*i2c address to FW where irq support missing */
+#define CY8CTMG110_TOUCH_IRQ 21
+#define CY8CTMG110_TOUCH_LENGHT 9787
+#define CY8CTMG110_SCREEN_LENGHT 8424
+
+
+/*Touch coordinates*/
+#define CY8CTMG110_X_MIN 0
+#define CY8CTMG110_Y_MIN 0
+#define CY8CTMG110_X_MAX 864
+#define CY8CTMG110_Y_MAX 480
+
+
+/*cy8ctmg110 registers defination*/
+#define CY8CTMG110_TOUCH_WAKEUP_TIME 0
+#define CY8CTMG110_TOUCH_SLEEP_TIME 2
+#define CY8CTMG110_TOUCH_X1 3
+#define CY8CTMG110_TOUCH_Y1 5
+#define CY8CTMG110_TOUCH_X2 7
+#define CY8CTMG110_TOUCH_Y2 9
+#define CY8CTMG110_FINGERS 11
+#define CY8CTMG110_GESTURE 12
+#define CY8CTMG110_REG_MAX 13
+
+#define CY8CTMG110_POLL_TIMER_DELAY 1000*1000*100
+#define TOUCH_MAX_I2C_FAILS 50
+
+/* Scale factors for coordinates */
+#define X_SCALE_FACTOR 9387/8424
+#define Y_SCALE_FACTOR 97/100
+
+/* For tracing */
+static int g_y_trace_coord = 0;
+module_param(g_y_trace_coord, int, 0600);
+
+/* Polling mode */
+static int polling = 0;
+module_param(polling, int, 0);
+MODULE_PARM_DESC(polling, "Set to enabling polling of the touchscreen");
+
+
+/*
+ * The touch position structure.
+ */
+struct ts_event {
+ int x1;
+ int y1;
+ int x2;
+ int y2;
+ bool event_sended;
+};
+
+/*
+ * The touch driver structure.
+ */
+struct cy8ctmg110 {
+ struct input_dev *input;
+ char phys[32];
+ struct ts_event tc;
+ struct i2c_client *client;
+ bool pending;
+ spinlock_t lock;
+ bool initController;
+ bool sleepmode;
+ int i2c_fail_count;
+ struct hrtimer timer;
+};
+
+/*
+ * cy8ctmg110_poweroff is the routine that is called when touch hardware
+ * will powered off
+ */
+static void cy8ctmg110_power(bool poweron)
+{
+ if (poweron)
+ gpio_direction_output(CY8CTMG110_RESET_PIN_GPIO, 0);
+ else
+ gpio_direction_output(CY8CTMG110_RESET_PIN_GPIO, 1);
+}
+
+/*
+ * cy8ctmg110_write_req write regs to the i2c devices
+ *
+ */
+static int cy8ctmg110_write_req(struct cy8ctmg110 *tsc, unsigned char reg,
+ unsigned char len, unsigned char *value)
+{
+ struct i2c_client *client = tsc->client;
+ unsigned int ret;
+ unsigned char i2c_data[] = { 0, 0, 0, 0, 0, 0 };
+ struct i2c_msg msg[] = {
+ {client->addr, 0, len + 1, i2c_data},
+ };
+
+ i2c_data[0] = reg;
+ memcpy(i2c_data + 1, value, len);
+
+ ret = i2c_transfer(client->adapter, msg, 1);
+ if (ret != 1) {
+ printk("cy8ctmg110 touch : i2c write data cmd failed \n");
+ return ret;
+ }
+ return 0;
+}
+
+/*
+ * cy8ctmg110_read_req read regs from i2c devise
+ *
+ */
+
+static int cy8ctmg110_read_req(struct cy8ctmg110 *tsc,
+ unsigned char *i2c_data, unsigned char len, unsigned char cmd)
+{
+ struct i2c_client *client = tsc->client;
+ unsigned int ret;
+ unsigned char regs_cmd[2] = { 0, 0 };
+ struct i2c_msg msg1[] = {
+ {client->addr, 0, 1, regs_cmd},
+ };
+ struct i2c_msg msg2[] = {
+ {client->addr, I2C_M_RD, len, i2c_data},
+ };
+
+ regs_cmd[0] = cmd;
+
+ /* first write slave position to i2c devices */
+ ret = i2c_transfer(client->adapter, msg1, 1);
+ if (ret != 1) {
+ tsc->i2c_fail_count++;
+ return ret;
+ }
+
+ /* Second read data from position */
+ ret = i2c_transfer(client->adapter, msg2, 1);
+ if (ret != 1) {
+ tsc->i2c_fail_count++;
+ return ret;
+ }
+ return 0;
+}
+
+/*
+ * cy8ctmg110_send_event delevery touch event to the userpace
+ * function use normal input interface
+ */
+static void cy8ctmg110_send_event(void *tsc)
+{
+ struct cy8ctmg110 *ts = tsc;
+ struct input_dev *input = ts->input;
+ u16 x, y;
+ u16 x2, y2;
+
+ x = ts->tc.x1;
+ y = ts->tc.y1;
+
+ if (ts->tc.event_sended == false) {
+ input_report_key(input, BTN_TOUCH, 1);
+ ts->pending = true;
+ x2 = (u16) (y * X_SCALE_FACTOR);
+ y2 = (u16) (x * Y_SCALE_FACTOR);
+ input_report_abs(input, ABS_X, x2);
+ input_report_abs(input, ABS_Y, y2);
+ input_sync(input);
+ if (g_y_trace_coord)
+ printk("cy8ctmg110 touch position X:%d (was = %d) Y:%d (was = %d)\n", x2, y, y2, x);
+ }
+
+}
+
+/*
+ * cy8ctmg110_touch_pos check touch position from i2c devices
+ *
+ */
+static int cy8ctmg110_touch_pos(struct cy8ctmg110 *tsc)
+{
+ unsigned char reg_p[CY8CTMG110_REG_MAX];
+ int x, y;
+
+ memset(reg_p, 0, CY8CTMG110_REG_MAX);
+
+ /*Reading coordinates */
+ if (cy8ctmg110_read_req(tsc, reg_p, 9, CY8CTMG110_TOUCH_X1) != 0)
+ return -EIO;
+
+ y = reg_p[2] << 8 | reg_p[3];
+ x = reg_p[0] << 8 | reg_p[1];
+ /*number of touch */
+ if (reg_p[8] == 0) {
+ if (tsc->pending == true) {
+ struct input_dev *input = tsc->input;
+
+ input_report_key(input, BTN_TOUCH, 0);
+ tsc->tc.event_sended = true;
+ tsc->pending = false;
+ }
+ } else if (tsc->tc.x1 != x || tsc->tc.y1 != y) {
+ tsc->tc.y1 = y;
+ tsc->tc.x1 = x;
+ tsc->tc.event_sended = false;
+ cy8ctmg110_send_event(tsc);
+ }
+ return 0;
+}
+
+/*
+ * if interrupt isn't in use the touch positions can reads by polling
+ *
+ */
+static enum hrtimer_restart cy8ctmg110_timer(struct hrtimer *handle)
+{
+ struct cy8ctmg110 *ts = container_of(handle, struct cy8ctmg110, timer);
+ unsigned long flags;
+
+ spin_lock_irqsave(&ts->lock, flags);
+
+ cy8ctmg110_touch_pos(ts);
+ if (ts->i2c_fail_count < TOUCH_MAX_I2C_FAILS)
+ hrtimer_start(&ts->timer, ktime_set(0, CY8CTMG110_POLL_TIMER_DELAY), HRTIMER_MODE_REL);
+
+ spin_unlock_irqrestore(&ts->lock, flags);
+ return HRTIMER_NORESTART;
+}
+
+/*
+ * cy8ctmg110_init_controller set init value to touchcontroller
+ *
+ */
+static bool cy8ctmg110_set_sleepmode(struct cy8ctmg110 *ts)
+{
+ unsigned char reg_p[3];
+
+ if (ts->sleepmode == true) {
+ reg_p[0] = 0x00;
+ reg_p[1] = 0xff;
+ reg_p[2] = 5;
+ } else {
+ reg_p[0] = 0x10;
+ reg_p[1] = 0xff;
+ reg_p[2] = 0;
+ }
+
+ if (cy8ctmg110_write_req(ts, CY8CTMG110_TOUCH_WAKEUP_TIME, 3, reg_p))
+ return false;
+
+ ts->initController = true;
+ return true;
+}
+
+/*
+ * cy8ctmg110_irq_handler irq handling function
+ *
+ */
+
+static irqreturn_t cy8ctmg110_irq_handler(int irq, void *dev_id)
+{
+ struct cy8ctmg110 *tsc = (struct cy8ctmg110 *) dev_id;
+
+ if (tsc->initController == false) {
+ if (cy8ctmg110_set_sleepmode(tsc) == true)
+ tsc->initController = true;
+ } else
+ cy8ctmg110_touch_pos(tsc);
+
+ /* if interrupt supported in the touch controller
+ timer polling need to stop */
+ tsc->i2c_fail_count = TOUCH_MAX_I2C_FAILS;
+ return IRQ_HANDLED;
+}
+
+
+static int cy8ctmg110_probe(struct i2c_client *client, const struct i2c_device_id *id)
+{
+ struct cy8ctmg110 *ts;
+ struct input_dev *input_dev;
+ int err;
+ client->irq = CY8CTMG110_TOUCH_IRQ;
+
+ if (!i2c_check_functionality(client->adapter,
+ I2C_FUNC_SMBUS_READ_WORD_DATA))
+ return -EIO;
+
+ ts = kzalloc(sizeof(struct cy8ctmg110), GFP_KERNEL);
+ input_dev = input_allocate_device();
+
+ if (!ts || !input_dev) {
+ err = -ENOMEM;
+ goto err_free_mem;
+ }
+
+ ts->client = client;
+ i2c_set_clientdata(client, ts);
+
+ ts->input = input_dev;
+ ts->pending = false;
+ ts->sleepmode = false;
+
+ snprintf(ts->phys, sizeof(ts->phys), "%s/input0",
+ dev_name(&client->dev));
+
+ input_dev->name = CY8CTMG110_DRIVER_NAME " Touchscreen";
+ input_dev->phys = ts->phys;
+ input_dev->id.bustype = BUS_I2C;
+
+ spin_lock_init(&ts->lock);
+
+ input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP) |
+ BIT_MASK(EV_REL) | BIT_MASK(EV_ABS);
+ input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
+
+ input_set_capability(input_dev, EV_KEY, KEY_F);
+
+ input_set_abs_params(input_dev, ABS_X, CY8CTMG110_X_MIN, CY8CTMG110_X_MAX, 0, 0);
+ input_set_abs_params(input_dev, ABS_Y, CY8CTMG110_Y_MIN, CY8CTMG110_Y_MAX, 0, 0);
+
+ err = gpio_request(CY8CTMG110_RESET_PIN_GPIO, NULL);
+
+ if (err) {
+ dev_err(&client->dev, "cy8ctmg110_ts: Unable to request GPIO pin %d.\n",
+ CY8CTMG110_RESET_PIN_GPIO);
+ goto err_free_irq;
+ }
+ cy8ctmg110_power(true);
+
+ ts->initController = false;
+ ts->i2c_fail_count = 0;
+
+ hrtimer_init(&ts->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
+ ts->timer.function = cy8ctmg110_timer;
+
+ if (polling)
+ hrtimer_start(&ts->timer, ktime_set(10, 0), HRTIMER_MODE_REL);
+
+ /* Can we fall back to polling if these bits fail - something to look
+ at for robustness */
+
+ err = gpio_request(CY8CTMG110_IRQ_PIN_GPIO, "touch_irq_key");
+ if (err < 0) {
+ dev_err(&client->dev,
+ "cy8ctmg110_ts: failed to request GPIO %d, error %d\n",
+ CY8CTMG110_IRQ_PIN_GPIO, err);
+ goto err_free_timer;
+ }
+
+ err = gpio_direction_input(CY8CTMG110_IRQ_PIN_GPIO);
+
+ if (err < 0) {
+ dev_err(&client->dev,
+ "cy8ctmg110_ts: failed to configure input direction for GPIO %d, error %d\n",
+ CY8CTMG110_IRQ_PIN_GPIO, err);
+ goto err_free_gpio;
+ }
+ client->irq = gpio_to_irq(CY8CTMG110_IRQ_PIN_GPIO);
+
+ if (client->irq < 0) {
+ err = client->irq;
+ dev_err(&client->dev,
+ "cy8ctmg110_ts: Unable to get irq number" " for GPIO %d, error %d\n",
+ CY8CTMG110_IRQ_PIN_GPIO, err);
+ goto err_free_gpio;
+ }
+ err = request_irq(client->irq, cy8ctmg110_irq_handler, IRQF_TRIGGER_RISING | IRQF_SHARED, "touch_reset_key", ts);
+ if (err < 0) {
+ dev_err(&client->dev,
+ "cy8ctmg110 irq %d busy? error %d\n",
+ client->irq, err);
+ goto err_free_gpio;
+ }
+
+ err = input_register_device(input_dev);
+ if (!err)
+ return 0;
+err_free_gpio:
+ gpio_free(CY8CTMG110_IRQ_PIN_GPIO);
+err_free_timer:
+ if (polling)
+ hrtimer_cancel(&ts->timer);
+err_free_irq:
+ free_irq(client->irq, ts);
+err_free_mem:
+ input_free_device(input_dev);
+ kfree(ts);
+ return err;
+}
+
+/*
+ * cy8ctmg110_suspend
+ *
+ */
+
+static int cy8ctmg110_suspend(struct i2c_client *client, pm_message_t mesg)
+{
+ if (device_may_wakeup(&client->dev))
+ enable_irq_wake(client->irq);
+
+ return 0;
+}
+
+/*
+ * cy8ctmg110_resume
+ *
+ */
+
+static int cy8ctmg110_resume(struct i2c_client *client)
+{
+ if (device_may_wakeup(&client->dev))
+ disable_irq_wake(client->irq);
+
+ return 0;
+}
+
+/*
+ * cy8ctmg110_remove
+ *
+ */
+
+static int cy8ctmg110_remove(struct i2c_client *client)
+{
+ struct cy8ctmg110 *ts = i2c_get_clientdata(client);
+
+ cy8ctmg110_power(false);
+
+ if (polling)
+ hrtimer_cancel(&ts->timer);
+ free_irq(client->irq, ts);
+ input_unregister_device(ts->input);
+ /* FIXME: Do we need to free the GPIO ? */
+ kfree(ts);
+ return 0;
+}
+
+static struct i2c_device_id cy8ctmg110_idtable[] = {
+ {CY8CTMG110_DRIVER_NAME, 1},
+ {}
+};
+
+MODULE_DEVICE_TABLE(i2c, cy8ctmg110_idtable);
+
+static struct i2c_driver cy8ctmg110_driver = {
+ .driver = {
+ .owner = THIS_MODULE,
+ .name = CY8CTMG110_DRIVER_NAME,
+ .bus = &i2c_bus_type,
+ },
+ .id_table = cy8ctmg110_idtable,
+ .probe = cy8ctmg110_probe,
+ .remove = cy8ctmg110_remove,
+ .suspend = cy8ctmg110_suspend,
+ .resume = cy8ctmg110_resume,
+};
+
+static int __init cy8ctmg110_init(void)
+{
+ return i2c_add_driver(&cy8ctmg110_driver);
+}
+
+static void __exit cy8ctmg110_exit(void)
+{
+ i2c_del_driver(&cy8ctmg110_driver);
+}
+
+module_init(cy8ctmg110_init);
+module_exit(cy8ctmg110_exit);
+
+MODULE_AUTHOR("Samuli Konttila <samuli.konttila@aavamobile.com>");
+MODULE_DESCRIPTION("cy8ctmg110 TouchScreen Driver");
+MODULE_LICENSE("GPL v2");
^ permalink raw reply related [flat|nested] 45+ messages in thread
* (unknown),
@ 2010-07-17 8:06 Grant Mayor
0 siblings, 0 replies; 45+ messages in thread
From: Grant Mayor @ 2010-07-17 8:06 UTC (permalink / raw)
FUNDING NOTIFICATION.............I am Mr Grant Mayor. i am a loan lender
as well as an angel investor, I offer funds based on demands and i use the
best possible interest rate so that it can make both paties smile. I allow
my clients to decide the loan repayment duration. So i have my door for
funding opened to all that is in need, If you have been turned down be
many financial institutions, this is a great time for you to make things
up. If you need a stress free funing, kindly get back to me with a mail of
application for funding and you will get funded within 3 working days.
Send all mails of application to: to.grantfinancing-Re5JQEeQqe9fmgfxC/sS/w@public.gmane.org
I await your response.
Grant Mayor.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2010-08-27 0:25 Vincent Cheng Hoi Chuen
0 siblings, 0 replies; 45+ messages in thread
From: Vincent Cheng Hoi Chuen @ 2010-08-27 0:25 UTC (permalink / raw)
I have a business proposal of USD $22,500,000.00 only for you to transact
with me from my bank to your country.Reply to choi_chuen2010-/E1597aS9LR3+QwDJ9on6Q@public.gmane.org
and I will let you know what is required of you.
Best Regards,
Mr. Vincent Chen
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
2010-09-13 19:47 [PATCH 00/25] treewide-next: Use static const char arrays Joe Perches
@ 2010-09-14 9:14 ` David Howells
0 siblings, 0 replies; 45+ messages in thread
From: David Howells @ 2010-09-14 9:14 UTC (permalink / raw)
To: Joe Perches
Cc: Amit Kumar Salecha, linux-fbdev, linux-usb, Karsten Keil,
James Smart, linux-mips, VMware, Inc., Bruce Allan, PJ Waskiewicz,
Shreyas Bhatewara, alsa-devel, Jaroslav Kysela, dhowells,
James E.J. Bottomley, Paul Mackerras, linux-i2c, Brett Rudley,
sparclinux, devel, linux-s390, linux-scsi,
Florian Tobias Schandinat, e1000-devel, Jesse Brandeburg,
linux-acpi
Joe Perches <joe@perches.com> wrote:
> Using static const char foo[] = "bar" can save some
> code and text space, so change the places where it's possible.
That's reasonable.
> Also change the places that use
> char foo[] = "barX";
> ...
> foo[3] = value + '0';
> where X is typically changed
> char foo[sizeof("barX")];
> ...
> sprintf(foo, "bar%c", value + '0');
You haven't said what this gains. I can see what it may cost, though
(depending on how gcc loads foo[]).
David
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2010-10-15 8:55 WESTERN UNION TRANSFER
0 siblings, 0 replies; 45+ messages in thread
From: WESTERN UNION TRANSFER @ 2010-10-15 8:55 UTC (permalink / raw)
--
My working partner has helped me to send your
first payment of US$7,500 to you as
instructed by Mr. David Cameron and will
keep sending you US$7,500 twice a week until
the payment of (US$360,000) is completed
within six months and here is the information
below:
MONEY TRANSFER CONTROL NUMBER (MTCN):
291-371-8010
SENDER'S NAME:Solomon Daniel
AMOUNT: US$7,500
To track your funds forward Western Union
Money Transfer agent your Full Names and
Mobile Number via Email to:
Mr Gary Moore
E-mail:western-union.transfer02@w.cn
D/L: +447024044997
Please direct all enquiring to:
western-union.transfer02@w.cn
Best Regards,
Mr Gary Moore.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2010-11-05 14:52 Mr. Vincent Cheng Hoi Chuen
0 siblings, 0 replies; 45+ messages in thread
From: Mr. Vincent Cheng Hoi Chuen @ 2010-11-05 14:52 UTC (permalink / raw)
--
Good Day,
I am Mr. Vincent Cheng Hoi Chuen, GBS, JP Chairman of the Hong Kong and
Shanghai Banking Corporation Limited.i have a business proposal of Twenty
Two million Five Hundred Thousand United State Dollars only for you to
transact with me from my bank to your country.
All confirmable documents to back up the claims will be made available to
you prior to your acceptance and as soon as I receive your return mail Via
my email address:choi_chu008-/E1597aS9LR3+QwDJ9on6Q@public.gmane.org and I will let you know what is
required of you.
Your earliest response to this letter will be appreciated.
Best Regards,
Mr. Vincent Cheng
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2010-11-05 14:56 Mr. Vincent Cheng Hoi Chuen
0 siblings, 0 replies; 45+ messages in thread
From: Mr. Vincent Cheng Hoi Chuen @ 2010-11-05 14:56 UTC (permalink / raw)
--
Good Day,
I am Mr. Vincent Cheng Hoi Chuen, GBS, JP Chairman of the Hong Kong and
Shanghai Banking Corporation Limited.i have a business proposal of Twenty
Two million Five Hundred Thousand United State Dollars only for you to
transact with me from my bank to your country.
All confirmable documents to back up the claims will be made available to
you prior to your acceptance and as soon as I receive your return mail Via
my email address:choi_chu008-/E1597aS9LR3+QwDJ9on6Q@public.gmane.org and I will let you know what is
required of you.
Your earliest response to this letter will be appreciated.
Best Regards,
Mr. Vincent Cheng
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2011-03-01 23:45 Mr. henry
0 siblings, 0 replies; 45+ messages in thread
From: Mr. henry @ 2011-03-01 23:45 UTC (permalink / raw)
Van szüksége a hitel bármilyen célra? Van egy pénzügyi probléma? Nem
szükség van a pénzügyi megoldás? Mr. Henrik
hitelek a megoldás toall a pénzügyi problémákat, mi hitelek könnyen,
olcsó, és gyors. Írjon nekünk ma, hogy a kölcsönt, amire vágytok, akkor
intézkedik minden olyan kölcsön, hogy megfeleljen a költségvetés mindössze
3%-os kamat. Ha
érdekli, lépjen velünk kapcsolatba immediately.Optional Hitel A védelem
lehetővé teszi,
hogy megfeleljen a hiteltörlesztés, ha nem tud dolgozni, betegség miatt,
baleset vagy
munkanélküliség. Csak akkor vegye ki az értékes biztosítást, ha alkalmazni
az Ön kölcsönt,
emlékszem, hogy elmondja nekünk, ha azt szeretné, hogy
henmoralendingfirm-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
* HITEL JELENTKEZÉSI LAP *
* Teljes név ............*
* Otthoni cím ....................... ..*
* Születési dátum ......................*
* Telefonszám ...................*
* MOBIL szám, ha ..............*
* HITEL szükséges mennyiség .................*
* FAX .................*
* Állampolgárság ..................*
* ORSZÁG ........................*
* SZAKMA ....................*
* SEX ..................................*
* FÉRFI .............................*
* FEMAL .........................*
* VÁLÁS HA ......................*
* Legközelebbi hozzátartozó .......................*
* NÉV .......................... ...*
* Születési dátum .....................*
* CÉLJA KÖLCSÖNZÉS .......................... .......*
* A kölcsön időtartamát ........................*
* ID .......................*
* A Üdvözlettel *
* Mr. henry *
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
[not found] ` <AANLkTi=opkM3WW2v3xV=ox9HwD__WjqQuh3sM6Vh7fLj-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-03-15 21:08 ` Ben Gardiner
0 siblings, 0 replies; 45+ messages in thread
From: Ben Gardiner @ 2011-03-15 21:08 UTC (permalink / raw)
To: Bastian.Ruppert-qHSRieSIjQqELgA04lAiVw
Cc: khali-PUYAD+kWke1g9hUCZPvPmw,
davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/,
pjohn-k0rHJ+Hhz/SB+jHODAdFcQ, linux-i2c-u79uwXL29TY76Z2rM5mHXA
I tried the following patch based on the description of the steps you took to
recover the bus. Is there anything you can add? I still get lots of
'controller timed out' errors.
Best Regards,
Ben Gardiner
Nanometrics Inc.
http://www.nanometrics.ca
---
diff --git a/drivers/i2c/busses/i2c-davinci.c b/drivers/i2c/busses/i2c-davinci.c
index 5795c83..52e5e60 100644
--- a/drivers/i2c/busses/i2c-davinci.c
+++ b/drivers/i2c/busses/i2c-davinci.c
@@ -89,6 +89,7 @@
#define DAVINCI_I2C_MDR_XA BIT(8)
#define DAVINCI_I2C_MDR_RM BIT(7)
#define DAVINCI_I2C_MDR_IRS BIT(5)
+#define DAVINCI_I2C_MDR_FDF BIT(3)
#define DAVINCI_I2C_IMR_AAS BIT(6)
#define DAVINCI_I2C_IMR_SCD BIT(5)
@@ -149,6 +150,36 @@ static void generic_i2c_clock_pulse(unsigned int scl_pin)
}
}
+static void alternate_i2c_clock_pulse(struct davinci_i2c_dev *dev)
+{
+ u32 flag = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
+ /* free data format mode */
+ flag |= DAVINCI_I2C_MDR_FDF;
+ /* receive byte */
+ flag &= ~DAVINCI_I2C_MDR_TRX;
+ /* repeat */
+ flag |= DAVINCI_I2C_MDR_RM;
+
+ /*
+ * Write mode register first as needed for correct behaviour
+ * on OMAP-L138, but don't set STT yet to avoid a race with XRDY
+ * occuring before we have loaded DXR
+ */
+ davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
+
+ /* Disable receive and transmit interrupts */
+ flag = davinci_i2c_read_reg(dev, DAVINCI_I2C_IMR_REG);
+ flag &= ~DAVINCI_I2C_IMR_RRDY;
+ flag &= ~DAVINCI_I2C_IMR_XRDY;
+ davinci_i2c_write_reg(dev, DAVINCI_I2C_IMR_REG, flag);
+
+ /* Set STT to begin transmit now DXR is loaded */
+ flag |= DAVINCI_I2C_MDR_STT;
+ davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
+
+ udelay(40*9);
+}
+
/* This routine does i2c bus recovery as specified in the
* i2c protocol Rev. 03 section 3.16 titled "Bus clear"
*/
@@ -163,8 +194,10 @@ static void i2c_recover_bus(struct davinci_i2c_dev *dev)
flag |= DAVINCI_I2C_MDR_NACK;
/* write the data into mode register */
davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, flag);
- if (pdata)
+ if (pdata->scl_pin)
generic_i2c_clock_pulse(pdata->scl_pin);
+ else
+ alternate_i2c_clock_pulse(dev);
/* Send STOP */
flag = davinci_i2c_read_reg(dev, DAVINCI_I2C_MDR_REG);
flag |= DAVINCI_I2C_MDR_STP;
^ permalink raw reply related [flat|nested] 45+ messages in thread
* (unknown),
@ 2011-04-09 10:23 MRS BINTU MAHMUD
0 siblings, 0 replies; 45+ messages in thread
From: MRS BINTU MAHMUD @ 2011-04-09 10:23 UTC (permalink / raw)
Good Day,
I am Mrs. Bintu Mahmud. Am presently in the hospital suffering from Cancerous disease,I need a trustworthy and God fearing fellow to help me build and manage an orphanage home in your Country,If interested kindly get back to me for more details on (BARRSARIMAN1-sZYbRm74+0k@public.gmane.org).
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2011-05-02 7:23 WESTERN UNION OFFICE
0 siblings, 0 replies; 45+ messages in thread
From: WESTERN UNION OFFICE @ 2011-05-02 7:23 UTC (permalink / raw)
How are you today?
I write to inform you that we have already sent you $5,000.00USD
through Western union as we have been given the mandate to transfer
your full compensation payment of $1.800,000.00USD via western union
by this government.
I called to give you the information through phone as internet hackers
were many but i cannot reach you yesterday even this morning,So I
decided to email you the (MTCN) and sender name so that you can pick
up this $5,000.00USD to enable us send another $5,000.00USD by
tomorrow as you knows we will be sending you only $5,000.00USD per
day.Please pick up this information and run to any western union
(OUTLET) in your country and pick up this $5,000.00USD and send us an
email back,so that we can send another $5,000.00USD by tomorrow.
Manager: Mr Frank Amos
email me on:western-money71-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org
call us on: +234-7031908911
once you picked up this $5000.00USD today.
Here is the western union information to pick up the $5000.00USD,
MTCN : 602 155 4697
Sender's Name: Mark Winters
Question: Honest
Answer:Trust
Amount send: $5,000.00USD
country:Nigeria
I am waiting for your E-mail once you pick up $5000.00USD,
Thanks
Mr Frank Amos.
Kuito
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2011-05-21 12:50 western101-CuihnPlyLifQT0dZR+AlfA@public.gmane.org
0 siblings, 0 replies; 45+ messages in thread
From: western101-CuihnPlyLifQT0dZR+AlfA@public.gmane.org @ 2011-05-21 12:50 UTC (permalink / raw)
My associate has helped me to send your first payment
of $7,500 USD to you as instructed by Mr. David Cameron
the United Kingdom prime minister after the last G20
meeting that was held in United Kingdom, making you one
of the beneficiaries. Here is the information below.
MTCN Numbers: 6096147516
Sender First Name Is = Johannes
Second Name = Davis
I told him to keep sending you $7,500 USD twice a week
until the FULL payment of ($820000.00 United State Dollars)
is completed.
A certificate will be made to change the Receiver Name as
stated by the British prime minister, send your Full Names
and address via Email to: Mr Garry Moore
You cannot pickup the money until the certificate is issued to you.
Regards
Mr. Garry Moore.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2011-11-07 11:25 Wayne Tams
0 siblings, 0 replies; 45+ messages in thread
From: Wayne Tams @ 2011-11-07 11:25 UTC (permalink / raw)
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA
Hello,
I have been tasked with writing a driver for a Microchip Quad DAC with
EEPROM memory, MCP4728 if you would like to look it up. This device
has a feature that I have not come across before, the device's I2C
address is set in software and stored in the EEPROM as opposed to
using hardware. The factory default address for the MCP4728 is 0x60
and to avoid conflict it needs to be changed. The datasheet tells me I
must switch the LDAC pin from high to low at the last bit of the
second byte in the I2C message and it must stay low until the end of
the third byte.
I am wondering if there are any other devices within the kernel source
that support this type of address setup? I am assuming that the normal
set of I2C/SMBUS functions will not be enough to program a new address
since I will need some sort of mechanism to switchthe LDAC pin?
Kind regards
Wayne
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2012-02-15 17:47 Ann Adams
0 siblings, 0 replies; 45+ messages in thread
From: Ann Adams @ 2012-02-15 17:47 UTC (permalink / raw)
Hi
Sorry for the sudden contact with you via email, but please i have looked
For you in the past few months now without any good result that is why i
am using this medium, i would appreciate if you did contact me for a brief
Discussion my Phone number is (+44) 703 595 6471 and email is michaelachambers-SrPyuzuu+o61Qrn1Bg8BZw@public.gmane.org
Thanks In Advance
Michael Aiden
Note: All corresponding email should be sent to michaelachambers-SrPyuzuu+o61Qrn1Bg8BZw@public.gmane.org for an immediate attention.--
To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
@ 2012-03-01 10:33 Wolfram Sang
0 siblings, 0 replies; 45+ messages in thread
From: Wolfram Sang @ 2012-03-01 10:33 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, linux-i2c
The following changes since commit b01543dfe67bb1d191998e90d20534dc354de059:
Linux 3.3-rc4 (2012-02-18 15:53:33 -0800)
are available in the git repository at:
git://git.pengutronix.de/git/wsa/linux-2.6.git i2c-embedded/for-3.3
for you to fetch changes up to 844990daa2e69a4258049ba9c2bae1180657dac3:
i2c: mxs: only flag completion when queue is completely done (2012-02-24 22:28:27 +0100)
----------------------------------------------------------------
Wolfram Sang (1):
i2c: mxs: only flag completion when queue is completely done
drivers/i2c/busses/i2c-mxs.c | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2012-05-05 18:59 Mrs Sabah Halif
0 siblings, 0 replies; 45+ messages in thread
From: Mrs Sabah Halif @ 2012-05-05 18:59 UTC (permalink / raw)
--
Good day,my name is Mrs Sabah Halif i have a business proposal please contact me for details.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2012-05-08 0:36 Mrs.Dorothy Peters
0 siblings, 0 replies; 45+ messages in thread
From: Mrs.Dorothy Peters @ 2012-05-08 0:36 UTC (permalink / raw)
--
Hello,
Do you need a loan if yes contact this email address for more
details:mrs.dorothygloblaloanfirm02-PkbjNfxxIAQqdlJmJB21zg@public.gmane.org
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2012-05-25 13:45 robothroli company
0 siblings, 0 replies; 45+ messages in thread
From: robothroli company @ 2012-05-25 13:45 UTC (permalink / raw)
i am robothroli, Purchase manager from roli Merchant Ltd. We are
Import/export Company based in taiwan. We are interested in purchasing
your product and I would like to make an inquiry. Please inform me on:
Sample availability and price
Minimum order quantity
FOB Prices
Sincerely
Purchase Manager
robothroli
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2012-06-15 13:03 Mrs. Helen Wong
0 siblings, 0 replies; 45+ messages in thread
From: Mrs. Helen Wong @ 2012-06-15 13:03 UTC (permalink / raw)
Greetings to you,
I am Mrs.Helen Wong, from Shanghai Banking Corporation Limited. (China) I have a business proposal of USD$30,000,000 (Thirty Million United States Dollars Only) for you to transact with me
Contact me via my email address: helen_wong606-/E1597aS9LR3+QwDJ9on6Q@public.gmane.org
Mrs. Helen Wong
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2012-07-24 11:46 roboth roli company
0 siblings, 0 replies; 45+ messages in thread
From: roboth roli company @ 2012-07-24 11:46 UTC (permalink / raw)
i am robothroli, Purchase manager from roli Merchant Ltd. We are
Import/export Company based in taiwan. We are interested in purchasing
your product and I would like to make an inquiry. Please inform me on:
Sample availability and price
Minimum order quantity
FOB Prices
Sincerely
Purchase Manager
robothroli
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2014-05-22 0:06 Christian Organization
0 siblings, 0 replies; 45+ messages in thread
From: Christian Organization @ 2014-05-22 0:06 UTC (permalink / raw)
Good day,
We are Christian organization, we give loan to those who are dedicated
Christians, contact us at mercantilefinanceloanservice-/E1597aS9LQAvxtiuMwx3w@public.gmane.org
Regard
Mercantile
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2014-07-30 7:54 Mrs Sandra
0 siblings, 0 replies; 45+ messages in thread
From: Mrs Sandra @ 2014-07-30 7:54 UTC (permalink / raw)
To: Recipients
Do you need a loan?If yes contact us for more info thanks
Loan Amount Needed:
Loan Duration:
Country:
Phone Number:
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2014-09-18 14:15 Maria Caballero
0 siblings, 0 replies; 45+ messages in thread
From: Maria Caballero @ 2014-09-18 14:15 UTC (permalink / raw)
Loan Offer contact us for more details (gibonline11-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org<mailto:gibonline11-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>)
All Details should be forward to this E-mail address for fast respond: gibonline11-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org<mailto:gibonline11-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
[not found] ` <1480763910.146593.1414958012342.JavaMail.yahoo-o8Yl8dfWkGi9yjMHE8D8k1Z8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
@ 2014-11-02 19:54 ` MRS GRACE MANDA
0 siblings, 0 replies; 45+ messages in thread
From: MRS GRACE MANDA @ 2014-11-02 19:54 UTC (permalink / raw)
[-- Attachment #1: Type: text/plain, Size: 71 bytes --]
This is Mrs Grace Manda ( Please I need your Help is Urgent).
[-- Attachment #2: Mrs Grace Manda.rtf --]
[-- Type: application/rtf, Size: 35796 bytes --]
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
[not found] ` <1454203836.464995.1421052471046.JavaMail.yahoo-9w4kB8yGVwC9yjMHE8D8k1Z8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
@ 2015-01-12 18:09 ` MR. MORGAN W. THABO
0 siblings, 0 replies; 45+ messages in thread
From: MR. MORGAN W. THABO @ 2015-01-12 18:09 UTC (permalink / raw)
[-- Attachment #1: Type: text/plain, Size: 160 bytes --]
DEAR FRIEND,
PLEASE OPEN THE ATTACHED FILE, CAREFULLY GO THROUGH MY PROPOSAL AND GET BACK TO ME AS SOON AS POSSIBLE.
BEST REGARDS,
MR. MORGAN W. THABO.
[-- Attachment #2: Fund Transfer.doc --]
[-- Type: application/msword, Size: 33280 bytes --]
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2015-07-01 11:53 Sasnett_Karen
0 siblings, 0 replies; 45+ messages in thread
From: Sasnett_Karen @ 2015-07-01 11:53 UTC (permalink / raw)
Haben Sie einen Investor brauchen?
Haben Sie geschäftliche oder persönliche Darlehen benötigen?
Wir geben Darlehen an eine natürliche Person und Unternehmen bei 3% Zinsen jährlich. Weitere Informationen Kontaktieren Sie uns per E-Mail: omfcreditspa-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org<mailto:omfcreditspa-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>
HINWEIS: Leiten Sie Ihre Antwort nur an diese E-Mail: omfcreditspa@hotmail.com<mailto:omfcreditspa-PkbjNfxxIARBDgjK7y7TUQ@public.gmane.org>
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2015-08-20 7:12 Mark Singer
0 siblings, 0 replies; 45+ messages in thread
From: Mark Singer @ 2015-08-20 7:12 UTC (permalink / raw)
Do you need an investor?
Our investors fund project and business. We also give out loan/credit to any individual and company at 3% interest rate yearly. For more information, Contact us via Email: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
If you need an investor or quick funding, forward your response ONLY to this E-mail: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
....
Haben Sie einen Investor brauchen?
Unsere Investoren Fonds Projekt- und Geschäfts. Wir geben auch Darlehen / Kredite an jeden einzelnen und Unternehmen bei 3% Zinsen jährlich. Für weitere Informationen, kontaktieren Sie uns per E-Mail: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Wenn Sie ein Investor oder schnelle Finanzierung benötigen, senden Sie Ihre Antwort nur auf diese E-mail: devonfps-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org --
To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2015-08-29 18:29 jerryfunds20-ce4SikWyzov1DzgB3H+wF8mnrtQfU0CGQQ4Iyu8u01E
0 siblings, 0 replies; 45+ messages in thread
From: jerryfunds20-ce4SikWyzov1DzgB3H+wF8mnrtQfU0CGQQ4Iyu8u01E @ 2015-08-29 18:29 UTC (permalink / raw)
To: Recipients-u79uwXL29TY76Z2rM5mHXA
We Give Out Loans For 3% Interest Rate And We Offer Loans From $5,000 To $50,000,000.00, Are You Looking To Buy A House Car Or Company Or Start Up A Truck Company or Buy A Truck Or Personal Loans, Email Us At j.funds2000000-dVpeH4SrJT4@public.gmane.org With Amount Needed And Phone Number.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2015-08-30 1:58 jerryfunds3-ce4SikWyzov1DzgB3H+wF8mnrtQfU0CGQQ4Iyu8u01E
0 siblings, 0 replies; 45+ messages in thread
From: jerryfunds3-ce4SikWyzov1DzgB3H+wF8mnrtQfU0CGQQ4Iyu8u01E @ 2015-08-30 1:58 UTC (permalink / raw)
To: Recipients-u79uwXL29TY76Z2rM5mHXA
We Give Out Loans For 3% Interest Rate And We Offer Loans From $5,000 To $50,000,000.00, Are You Looking To Buy A House Car Or Company Or Start Up A Truck Company or Buy A Truck Or Personal Loans, Email Us At j.funds2000000-dVpeH4SrJT4@public.gmane.org With Amount Needed And Phone Number.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2015-09-23 10:48 jerryfunds247777
0 siblings, 0 replies; 45+ messages in thread
From: jerryfunds247777 @ 2015-09-23 10:48 UTC (permalink / raw)
To: Recipients
We Give Out Loans For 3% Interest Rate And We Offer Loans From $5,000 To $50,000,000.00, Are You Looking To Buy A House Car Or Company Or Start Up A Truck Company or Buy A Truck Or Personal Loans, Email Us At jerrysmith@inbox.lv With Amount Needed And Phone Number.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2017-04-05 16:53 dowen
0 siblings, 0 replies; 45+ messages in thread
From: dowen @ 2017-04-05 16:53 UTC (permalink / raw)
To: linux-i2c
[-- Attachment #1: 848830461176929.zip --]
[-- Type: application/zip, Size: 3825 bytes --]
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2017-04-21 17:07 Mr.Jerry Smith
0 siblings, 0 replies; 45+ messages in thread
From: Mr.Jerry Smith @ 2017-04-21 17:07 UTC (permalink / raw)
We Give Out Loans At 3% Interest Rate And We Offer Loans From $5,000 To $50,000,000.00, Are You Looking To Buy A House Car Or Company Or Start Up A Truck Company or Buy A Truck Or Personal Loans Or Business Loan, Email Us At jerryfunds11@inbox.lv With Amount Needed And Phone Number.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2017-08-02 17:31 Edmond
0 siblings, 0 replies; 45+ messages in thread
From: Edmond @ 2017-08-02 17:31 UTC (permalink / raw)
To: Carpenter
[-- Attachment #1: EMAIL_0884435643248_linux-i2c.zip --]
[-- Type: application/zip, Size: 2977 bytes --]
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2017-09-15 17:30 noreply
0 siblings, 0 replies; 45+ messages in thread
From: noreply @ 2017-09-15 17:30 UTC (permalink / raw)
To: linux-i2c
[-- Attachment #1: EMAIL_870530_linux-i2c.doc --]
[-- Type: application/msword, Size: 76656 bytes --]
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2017-09-20 1:01 ninfo
0 siblings, 0 replies; 45+ messages in thread
From: ninfo @ 2017-09-20 1:01 UTC (permalink / raw)
To: linux-i2c
[-- Attachment #1: 6246478047403.doc --]
[-- Type: application/msword, Size: 43564 bytes --]
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2018-02-13 22:57 Alfred Cheuk Chow
0 siblings, 0 replies; 45+ messages in thread
From: Alfred Cheuk Chow @ 2018-02-13 22:57 UTC (permalink / raw)
Good Day,
I am Mr. Alfred Cheuk Yu Chow, the Director for Credit & Marketing Chong
Hing Bank, Hong Kong, Chong Hing Bank Center, 24 Des Voeux Road Central,
Hong Kong. I have a business proposal of $ 38,980,369.00.
All confirmable documents to back up the claims will be made available
to you prior to your acceptance and as soon as I receive your return
mail.
Best Regards,
Alfred Chow.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown),
@ 2018-04-16 1:22 Andrew Worsley
2018-04-16 1:22 ` [PATCH] Further cadence i2c buffer overrun fixes Andrew Worsley
0 siblings, 1 reply; 45+ messages in thread
From: Andrew Worsley @ 2018-04-16 1:22 UTC (permalink / raw)
To: harinik, APANDEY, asarkar, soren.brinkmann, linux-arm-kernel,
linux-i2c
This patch clears the remaining i2c buffer overrun problems that I see in my
hardware. When run at 200kHz over 2 days and 17 hours there were *NO* faults seen
despite continously accessing the all the i2c devices. I feel the remaining issues
are related to the TPM not behaving properly at clock speeds of 285kHz or higher.
The other i2c hardware is fine up to maximum 400khz. At these higher clock speeds
the TPM appears to fall behind and I see SDA held low after the TPM read and the
driver report bus arbitration lost errors. Eventually the TPM completely stops
responding and SDA is held low. But accessing the other i2c hardware causes more
i2c clock pulses which lets the SDA go high again then the other i2c devices work
with out problems which further confirms our thinking that the TPM is source of the
remaining i2c problems.
With the additional i2c fixes in the attached patch the Xilinx i2c driver
is working with out problems on our hardware. I recommend you consider adding these
changes which apply on top of the previous fixes that I sent.
Thanks
Andrew Worsley
^ permalink raw reply [flat|nested] 45+ messages in thread
* [PATCH] Further cadence i2c buffer overrun fixes
2018-04-16 1:22 (unknown), Andrew Worsley
@ 2018-04-16 1:22 ` Andrew Worsley
2019-12-17 5:41 ` Shubhrajyoti Datta
0 siblings, 1 reply; 45+ messages in thread
From: Andrew Worsley @ 2018-04-16 1:22 UTC (permalink / raw)
To: harinik, APANDEY, asarkar, soren.brinkmann, linux-arm-kernel,
linux-i2c
Cc: Andrew Worsley
After this set of changes ran over 2 days 17 hours with no i2c failures
at 200kHz. Previously would lock up with BA (Bus Active) bit set
continously with in a few hours
Set the transfer size register *before* triggering the operation by
setting the i2c address register with the slave address.
If the transfer is less than one FIFO length clear the hold bit before
starting the transfer by writing to the i2c address register.
Finally for transfer larger than a FIFO in size clear the hold bit
just before removing the byte that allows the rest of the transfer
to fit into the FIFO and then complete.
---
drivers/i2c/busses/i2c-cadence.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/i2c/busses/i2c-cadence.c b/drivers/i2c/busses/i2c-cadence.c
index 925f77dfded8..260bd6c67e1f 100644
--- a/drivers/i2c/busses/i2c-cadence.c
+++ b/drivers/i2c/busses/i2c-cadence.c
@@ -449,10 +449,10 @@ static irqreturn_t cdns_i2c_master_isr(void *ptr)
break;
}
- *(id->p_recv_buf)++ =
- cdns_i2c_readreg(CDNS_I2C_DATA_OFFSET);
if (check_hold && id->recv_count == CDNS_I2C_FIFO_DEPTH + 1)
cdns_i2c_clear_bus_hold(id);
+ *(id->p_recv_buf)++ =
+ cdns_i2c_readreg(CDNS_I2C_DATA_OFFSET);
id->recv_count--;
id->curr_recv_count--;
@@ -492,10 +492,6 @@ static irqreturn_t cdns_i2c_master_isr(void *ptr)
} else if (id->recv_count && !hold_quirk &&
!id->curr_recv_count) {
- /* Set the slave address in address register*/
- cdns_i2c_writereg(id->p_msg->addr & CDNS_I2C_ADDR_MASK,
- CDNS_I2C_ADDR_OFFSET);
-
if (id->recv_count > CDNS_I2C_TRANSFER_SIZE) {
cdns_i2c_writereg(CDNS_I2C_TRANSFER_SIZE,
CDNS_I2C_XFER_SIZE_OFFSET);
@@ -505,6 +501,10 @@ static irqreturn_t cdns_i2c_master_isr(void *ptr)
CDNS_I2C_XFER_SIZE_OFFSET);
id->curr_recv_count = id->recv_count;
}
+
+ /* write the address register - triggers operation */
+ cdns_i2c_writereg(id->p_msg->addr & CDNS_I2C_ADDR_MASK,
+ CDNS_I2C_ADDR_OFFSET);
}
/* Clear hold (if not repeated start) and signal completion */
@@ -661,15 +661,15 @@ static void cdns_i2c_mrecv(struct cdns_i2c *id)
cdns_i2c_writereg(id->recv_count, CDNS_I2C_XFER_SIZE_OFFSET);
}
- /* Set the slave address in address register - triggers operation */
- cdns_i2c_writereg(CDNS_I2C_ENABLED_INTR_MASK, CDNS_I2C_IER_OFFSET);
- cdns_i2c_writereg(id->p_msg->addr & CDNS_I2C_ADDR_MASK,
- CDNS_I2C_ADDR_OFFSET);
/* Clear the bus hold flag if bytes to receive is less than FIFO size */
if (!id->bus_hold_flag &&
((id->p_msg->flags & I2C_M_RECV_LEN) != I2C_M_RECV_LEN) &&
(id->recv_count <= CDNS_I2C_FIFO_DEPTH))
cdns_i2c_clear_bus_hold(id);
+ /* Set the slave address in address register - triggers operation */
+ cdns_i2c_writereg(CDNS_I2C_ENABLED_INTR_MASK, CDNS_I2C_IER_OFFSET);
+ cdns_i2c_writereg(id->p_msg->addr & CDNS_I2C_ADDR_MASK,
+ CDNS_I2C_ADDR_OFFSET);
}
/**
--
2.11.0
^ permalink raw reply related [flat|nested] 45+ messages in thread
* (unknown)
@ 2019-12-12 15:50 周琰杰 (Zhou Yanjie)
0 siblings, 0 replies; 45+ messages in thread
From: 周琰杰 (Zhou Yanjie) @ 2019-12-12 15:50 UTC (permalink / raw)
To: linux-mips
Cc: linux-kernel, linux-i2c, devicetree, robh+dt, mark.rutland, paul,
paul.burton, paulburton, sernia.zhou, zhenwenjin
Add support for probing i2c driver on the X1000 Soc from Ingenic.
call the corresponding fifo parameter according to the device
model obtained from the devicetree.
^ permalink raw reply [flat|nested] 45+ messages in thread
* Re: [PATCH] Further cadence i2c buffer overrun fixes
2018-04-16 1:22 ` [PATCH] Further cadence i2c buffer overrun fixes Andrew Worsley
@ 2019-12-17 5:41 ` Shubhrajyoti Datta
0 siblings, 0 replies; 45+ messages in thread
From: Shubhrajyoti Datta @ 2019-12-17 5:41 UTC (permalink / raw)
To: Andrew Worsley
Cc: linux-arm-kernel, harinik, APANDEY, asarkar, linux-i2c,
Sören Brinkmann
Hi Andrew,
On Mon, Apr 16, 2018 at 6:55 AM Andrew Worsley <amworsley@gmail.com> wrote:
>
> After this set of changes ran over 2 days 17 hours with no i2c failures
> at 200kHz.
Can you explain this speed why you need it.
why not the standard ones.
> Previously would lock up with BA (Bus Active) bit set
> continously with in a few hours
>
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
[not found] <1187667350.235001.1580574902701.ref@mail.yahoo.com>
@ 2020-02-01 16:35 ` Mrs. Maureen Hinckley
0 siblings, 0 replies; 45+ messages in thread
From: Mrs. Maureen Hinckley @ 2020-02-01 16:35 UTC (permalink / raw)
I am Maureen Hinckley and my foundation is donating (Five hundred and fifty thousand USD) to you. Contact us via my email at (maurhinck6@gmail.com) for further details.
Best Regards,
Mrs. Maureen Hinckley,
Copyright ©2020 The Maureen Hinckley Foundation All Rights Reserved.
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
@ 2020-03-05 10:46 Juanito S. Galang
0 siblings, 0 replies; 45+ messages in thread
From: Juanito S. Galang @ 2020-03-05 10:46 UTC (permalink / raw)
Herzlichen Glückwunsch Lieber Begünstigter,Sie erhalten diese E-Mail von der Robert Bailey Foundation. Ich bin ein pensionierter Regierungsangestellter aus Harlem und ein Gewinner des Powerball Lottery Jackpot im Wert von 343,8 Millionen US-Dollar. Ich bin der größte Jackpot-Gewinner in der Geschichte der New Yorker Lotterie im US-Bundesstaat Amerika. Ich habe diese Lotterie am 27. Oktober 2018 gewonnen und möchte Sie darüber informieren, dass Google in Zusammenarbeit mit Microsoft Ihre "E-Mail-Adresse" auf meine Bitte, einen Spendenbetrag von 3.000.000,00 Millionen Euro zu erhalten, übermittelt hat. Ich spende diese 3 Millionen Euro an Sie, um den Wohltätigkeitsheimen und armen Menschen in Ihrer Gemeinde zu helfen, damit wir die Welt für alle verbessern können.Weitere Informationen finden Sie auf der folgenden Website, damit Sie nicht skeptisch sind
Diese Spende von 3 Mio. EUR.https://nypost.com/2018/11/14/meet-the-winner-of-the-biggest-lottery-jackpot-in-new-york-history/Sie können auch mein YouTube für mehr Bestätigung aufpassen:
https://www.youtube.com/watch?v=H5vT18Ysavc
Bitte beachten Sie, dass alle Antworten an (robertdonation7@gmail.com ) gesendet werden, damit wir das können
Fahren Sie fort, um das gespendete Geld an Sie zu überweisen.E-Mail: robertdonation7@gmail.comFreundliche Grüße,
Robert Bailey
* * * * * * * * * * * * * * * *
Powerball Jackpot Gewinner
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
@ 2020-03-09 7:34 Michael J. Weirsky
0 siblings, 0 replies; 45+ messages in thread
From: Michael J. Weirsky @ 2020-03-09 7:34 UTC (permalink / raw)
--
My name is Michael J. Weirsky, I'm an unemployed Handy man , winner of
$273million Jackpot in March 8, 2019. I donate $1.000.000,00 to you.
Contact me via email: micjsky@aol.com for info / claim.
Continue reading:
https://abcnews.go.com/WNT/video/jersey-handyman-forward-273m-lottery-winner-61544244
^ permalink raw reply [flat|nested] 45+ messages in thread
* (unknown)
@ 2020-03-17 0:11 David Ibe
0 siblings, 0 replies; 45+ messages in thread
From: David Ibe @ 2020-03-17 0:11 UTC (permalink / raw)
Good Day,
I am Mr. David Ibe, I work with the International Standards on Auditing, I have seen on records, that several times people has divert your funds into their own personal accounts.
Now I am writing to you in respect of the amount which I have been able to send to you through our International United Nations accredited and approved Diplomat, who has arrived Africa, I want you to know that the diplomat would deliver the funds which I have packaged as a diplomatic compensation to you and the amount in the consignment is $10,000,000.00 United State Dollars.
I did not disclose the contents to the diplomat, but I told him that it is your compensation from the Auditing Corporate Governance and Stewardship, Auditing and Assurance Standards Board. I want you to know that these funds would help with your financial status as I have seen in records that you have spent a lot trying to receive these funds and I am not demanding so much from you but only 30% for my stress and logistics.
I would like you to get back to me with your personal contact details, so that I can give you the contact information's of the diplomat who has arrived Africa and has been waiting to get your details so that he can proceed with the delivery to you.
Yours Sincerely,
Kindly forward your details to: mrdavidibe966@gmail.com
Mr. David Ibe
International Auditor,
Corporate Governance and Stewardship
^ permalink raw reply [flat|nested] 45+ messages in thread
end of thread, other threads:[~2020-03-17 0:11 UTC | newest]
Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-16 1:22 (unknown), Andrew Worsley
2018-04-16 1:22 ` [PATCH] Further cadence i2c buffer overrun fixes Andrew Worsley
2019-12-17 5:41 ` Shubhrajyoti Datta
-- strict thread matches above, loose matches on Subject: below --
2020-03-17 0:11 (unknown) David Ibe
2020-03-09 7:34 (unknown) Michael J. Weirsky
2020-03-05 10:46 (unknown) Juanito S. Galang
[not found] <1187667350.235001.1580574902701.ref@mail.yahoo.com>
2020-02-01 16:35 ` (unknown) Mrs. Maureen Hinckley
2019-12-12 15:50 (unknown) 周琰杰 (Zhou Yanjie)
2018-02-13 22:57 (unknown), Alfred Cheuk Chow
2017-09-20 1:01 (unknown), ninfo
2017-09-15 17:30 (unknown), noreply
2017-08-02 17:31 (unknown), Edmond
2017-04-21 17:07 (unknown), Mr.Jerry Smith
2017-04-05 16:53 (unknown), dowen
2015-09-23 10:48 (unknown), jerryfunds247777
2015-08-30 1:58 (unknown), jerryfunds3-ce4SikWyzov1DzgB3H+wF8mnrtQfU0CGQQ4Iyu8u01E
2015-08-29 18:29 (unknown), jerryfunds20-ce4SikWyzov1DzgB3H+wF8mnrtQfU0CGQQ4Iyu8u01E
2015-08-20 7:12 (unknown), Mark Singer
2015-07-01 11:53 (unknown), Sasnett_Karen
[not found] <491603614.2711416.1420447432492.JavaMail.yahoo@jws100153.mail.ne1.yahoo.com>
[not found] ` <791409998.2699745.1420449010721.JavaMail.yahoo@jws10094.mail.ne1.yahoo.com>
[not found] ` <2097467700.2731314.1420449474531.JavaMail.yahoo@jws10033.mail.ne1.yahoo.com>
[not found] ` <240226799.2727140.1420449969125.JavaMail.yahoo@jws10067.mail.ne1.yahoo.com>
[not found] ` <1939115871.2753921.1420457274798.JavaMail.yahoo@jws10085.mail.ne1.yahoo.com>
[not found] ` <1994957961.2730912.1420457695514.JavaMail.yahoo@jws10056.mail.ne1.yahoo.com>
[not found] ` <1680079570.2743238.1420458170796.JavaMail.yahoo@jws100211.mail.ne1.yahoo.com>
[not found] ` <1659658722.2746194.1420458683277.JavaMail.yahoo@jws10057.mail.ne1.yahoo.com>
[not found] ` <676811817.2753620.1420459085042.JavaMail.yahoo@jws100122.mail.ne1.yahoo.com>
[not found] ` <292828112.2728941.1420459779830.JavaMail.yahoo@jws10062.mail.ne1.yahoo.com>
[not found] ` <175440141 0.2748317.1420460266117.JavaMail.yahoo@jws10086.mail.ne1.yahoo.com>
[not found] ` <1860808438.2753482.1420460950827.JavaMail.yahoo@jws100138.mail.ne1.yahoo.com>
[not found] ` <509045745.2731669.1420461374473.JavaMail.yahoo@jws10063.mail.ne1.yahoo.com>
[not found] ` <2027814345.1724383.1420461875563.JavaMail.yahoo@jws10002g.mail.ne1.yahoo.com>
[not found] ` <1968321735.2759124.1420462309628.JavaMail.yahoo@jws100110.mail.ne1.yahoo.com>
[not found] ` <463667213.2418879.1420462687894.JavaMail.yahoo@jws10077.mail.ne1.yahoo.com>
[not found] ` <1379589304.738623.1420475580420.JavaMail.yahoo@jws100105.mail.ne1.yahoo.com>
[not found] ` <755691156.2814422.1420475746824.JavaMail.yahoo@jws10032.mail.ne1.yahoo.com>
[not found] ` <472406141.2821728.1420476367350.JavaMail.yahoo@jws100120.mail.ne1.yahoo.com>
[not found] ` <221715421.2841474.1420477779861.JavaMail.yahoo@jws100168.mail.ne1.yahoo.com>
[not found] ` <254713802.2842121.142047836 5372.JavaMail.yahoo@jws10038.mail.ne1.yahoo.com>
[not found] ` <1464384704.2848608.1420478734002.JavaMail.yahoo@jws100207.mail.ne1.yahoo.com>
[not found] ` <4065663.2836254.1420480471129.JavaMail.yahoo@jws10042.mail.ne1.yahoo.com>
[not found] ` <1320938856.2854165.1420481033791.JavaMail.yahoo@jws100151.mail.ne1.yahoo.com>
[not found] ` <1135342988.2849228.1420481646955.JavaMail.yahoo@jws100179.mail.ne1.yahoo.com>
[not found] ` <2074478185.2848501.1420482268248.JavaMail.yahoo@jws10082.mail.ne1.yahoo.com>
[not found] ` <1712723305.2866482.1420482691782.JavaMail.yahoo@jws100183.mail.ne1.yahoo.com>
[not found] ` <252627126.2892667.1420488068173.JavaMail.yahoo@jws10029.mail.ne1.yahoo.com>
[not found] ` <1065493696.2895450.1420488484721.JavaMail.yahoo@jws10076.mail.ne1.yahoo.com>
[not found] ` <1203194643.2918350.1420491573271.JavaMail.yahoo@jws100108.mail.ne1.yahoo.com>
[not found] ` <1046709736.2914723.1420491997552.JavaMail.yah oo@jws10054.mail.ne1.yahoo.com>
[not found] ` <1995371219.2936216.1420492558117.JavaMail.yahoo@jws100142.mail.ne1.yahoo.com>
[not found] ` <2001229887.2923985.1420493570028.JavaMail.yahoo@jws100125.mail.ne1.yahoo.com>
[not found] ` <348533999.2937953.1420493983611.JavaMail.yahoo@jws10053.mail.ne1.yahoo.com>
[not found] ` <1340159510.32526.1420519464410.JavaMail.yahoo@jws10081.mail.ne1.yahoo.com>
[not found] ` <962476274.1899010.1420521106577.JavaMail.yahoo@jws10001g.mail.ne1.yahoo.com>
[not found] ` <1458665553.3048449.1420521913960.JavaMail.yahoo@jws100107.mail.ne1.yahoo.com>
[not found] ` <1012235344.3036312.1420522405591.JavaMail.yahoo@jws100104.mail.ne1.yahoo.com>
[not found] ` <1547653530.3020536.1420523662414.JavaMail.yahoo@jws10040.mail.ne1.yahoo.com>
[not found] ` <1790092626.3029305.1420524241447.JavaMail.yahoo@jws100209.mail.ne1.yahoo.com>
[not found] ` <2092522293.3046570.1420524984091.JavaMail.yahoo@jws100135.mai l.ne1.yahoo.com>
[not found] ` <1252881721.3050693.1420525551385.JavaMail.yahoo@jws100140.mail.ne1.yahoo.com>
[not found] ` <51065461.3051024.1420526361766.JavaMail.yahoo@jws10035.mail.ne1.yahoo.com>
[not found] ` <2088659211.3041886.1420527084737.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
[not found] ` <1146750372.3050740.1420527826885.JavaMail.yahoo@jws100148.mail.ne1.yahoo.com>
[not found] ` <200807348.3052863.1420529187986.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
[not found] ` <318130978.3851172.1420732530471.JavaMail.yahoo@jws10041.mail.ne1.yahoo.com>
[not found] ` <1581418323.3896621.1420740180883.JavaMail.yahoo@jws100132.mail.ne1.yahoo.com>
[not found] ` <1141109426.3909408.1420741083576.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
[not found] ` <319184965.3917235.1420743616835.JavaMail.yahoo@jws10029.mail.ne1.yahoo.com>
[not found] ` <324427432.3992904.1420755522887.JavaMail.yahoo@jws100134.mail.ne1.yahoo.com>
[not found] ` <1454203836.464995.1421052471046.JavaMail.yahoo-9w4kB8yGVwC9yjMHE8D8k1Z8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
2015-01-12 18:09 ` (unknown) MR. MORGAN W. THABO
[not found] <1570038211.167595.1414613146892.JavaMail.yahoo@jws10056.mail.ne1.yahoo.com>
[not found] ` <1835234304.171617.1414613165674.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
[not found] ` <1938862685.172387.1414613200459.JavaMail.yahoo@jws100180.mail.ne1.yahoo.com>
[not found] ` <705402329.170339.1414613213653.JavaMail.yahoo@jws10087.mail.ne1.yahoo.com>
[not found] ` <760168749.169371.1414613227586.JavaMail.yahoo@jws10082.mail.ne1.yahoo.com>
[not found] ` <1233923671.167957.1414613439879.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
[not found] ` <925985882.172122.1414613520734.JavaMail.yahoo@jws100207.mail.ne1.yahoo.com>
[not found] ` <1216694778.172990.1414613570775.JavaMail.yahoo@jws100152.mail.ne1.yahoo.com>
[not found] ` <1213035306.169838.1414613612716.JavaMail.yahoo@jws10097.mail.ne1.yahoo.com>
[not found] ` <2058591563.172973.1414613668636.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
[not found] ` <1202030640.175493 .1414613712352.JavaMail.yahoo@jws10036.mail.ne1.yahoo.com>
[not found] ` <1111049042.175610.1414613739099.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
[not found] ` <574125160.175950.1414613784216.JavaMail.yahoo@jws100158.mail.ne1.yahoo.com>
[not found] ` <1726966600.175552.1414613846198.JavaMail.yahoo@jws100190.mail.ne1.yahoo.com>
[not found] ` <976499752.219775.1414613888129.JavaMail.yahoo@jws100101.mail.ne1.yahoo.com>
[not found] ` <1400960529.171566.1414613936238.JavaMail.yahoo@jws10059.mail.ne1.yahoo.com>
[not found] ` <1333619289.175040.1414613999304.JavaMail.yahoo@jws100196.mail.ne1.yahoo.com>
[not found] ` <1038759122.176173.1414614054070.JavaMail.yahoo@jws100138.mail.ne1.yahoo.com>
[not found] ` <1109995533.176150.1414614101940.JavaMail.yahoo@jws100140.mail.ne1.yahoo.com>
[not found] ` <809474730.174920.1414614143971.JavaMail.yahoo@jws100154.mail.ne1.yahoo.com>
[not found] ` <1234226428.170349.1414614189490.JavaMail .yahoo@jws10056.mail.ne1.yahoo.com>
[not found] ` <1122464611.177103.1414614228916.JavaMail.yahoo@jws100161.mail.ne1.yahoo.com>
[not found] ` <1350859260.174219.1414614279095.JavaMail.yahoo@jws100176.mail.ne1.yahoo.com>
[not found] ` <1730751880.171557.1414614322033.JavaMail.yahoo@jws10060.mail.ne1.yahoo.com>
[not found] ` <642429550.177328.1414614367628.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
[not found] ` <1400780243.20511.1414614418178.JavaMail.yahoo@jws100162.mail.ne1.yahoo.com>
[not found] ` <2025652090.173204.1414614462119.JavaMail.yahoo@jws10087.mail.ne1.yahoo.com>
[not found] ` <859211720.180077.1414614521867.JavaMail.yahoo@jws100147.mail.ne1.yahoo.com>
[not found] ` <258705675.173585.1414614563057.JavaMail.yahoo@jws10078.mail.ne1.yahoo.com>
[not found] ` <1773234186.173687.1414614613736.JavaMail.yahoo@jws10078.mail.ne1.yahoo.com>
[not found] ` <1132079010.173033.1414614645153.JavaMail.yahoo@jws10066.mail.ne1.ya hoo.com>
[not found] ` <1972302405.176488.1414614708676.JavaMail.yahoo@jws100166.mail.ne1.yahoo.com>
[not found] ` <1713123000.176308.1414614771694.JavaMail.yahoo@jws10045.mail.ne1.yahoo.com>
[not found] ` <299800233.173413.1414614817575.JavaMail.yahoo@jws10066.mail.ne1.yahoo.com>
[not found] ` <494469968.179875.1414614903152.JavaMail.yahoo@jws100144.mail.ne1.yahoo.com>
[not found] ` <2136945987.171995.1414614942776.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
[not found] ` <257674219.177708.1414615022592.JavaMail.yahoo@jws100181.mail.ne1.yahoo.com>
[not found] ` <716927833.181664.1414615075308.JavaMail.yahoo@jws100145.mail.ne1.yahoo.com>
[not found] ` <874940984.178797.1414615132802.JavaMail.yahoo@jws100157.mail.ne1.yahoo.com>
[not found] ` <1283488887.176736.1414615187657.JavaMail.yahoo@jws100183.mail.ne1.yahoo.com>
[not found] ` <777665713.175887.1414615236293.JavaMail.yahoo@jws10083.mail.ne1.yahoo.com>
[not found] ` <585395776.176325.1 414615298260.JavaMail.yahoo@jws10033.mail.ne1.yahoo.com>
[not found] ` <178352191.221832.1414615355071.JavaMail.yahoo@jws100104.mail.ne1.yahoo.com>
[not found] ` <108454213.176606.1414615522058.JavaMail.yahoo@jws10053.mail.ne1.yahoo.com>
[not found] ` <1617229176.177502.1414615563724.JavaMail.yahoo@jws10030.mail.ne1.yahoo.com>
[not found] ` <324334617.178254.1414615625247.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
[not found] ` <567135865.82376.1414615664442.JavaMail.yahoo@jws100136.mail.ne1.yahoo.com>
[not found] ` <764758300.179669.1414615711821.JavaMail.yahoo@jws100107.mail.ne1.yahoo.com>
[not found] ` <1072855470.183388.1414615775798.JavaMail.yahoo@jws100147.mail.ne1.yahoo.com>
[not found] ` <2134283632.173314.1414615831322.JavaMail.yahoo@jws10094.mail.ne1.yahoo.com>
[not found] ` <1454491902.178612.1414615875076.JavaMail.yahoo@jws100209.mail.ne1.yahoo.com>
[not found] ` <1480763910.146593.1414958012342.JavaMail.yahoo-o8Yl8dfWkGi9yjMHE8D8k1Z8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
2014-11-02 19:54 ` (unknown) MRS GRACE MANDA
2014-09-18 14:15 (unknown), Maria Caballero
2014-07-30 7:54 (unknown), Mrs Sandra
2014-05-22 0:06 (unknown), Christian Organization
2012-07-24 11:46 (unknown), roboth roli company
2012-06-15 13:03 (unknown), Mrs. Helen Wong
2012-05-25 13:45 (unknown), robothroli company
2012-05-08 0:36 (unknown), Mrs.Dorothy Peters
2012-05-05 18:59 (unknown), Mrs Sabah Halif
2012-03-01 10:33 (unknown) Wolfram Sang
2012-02-15 17:47 (unknown), Ann Adams
2011-11-07 11:25 (unknown), Wayne Tams
2011-05-21 12:50 (unknown), western101-CuihnPlyLifQT0dZR+AlfA@public.gmane.org
2011-05-02 7:23 (unknown), WESTERN UNION OFFICE
2011-04-09 10:23 (unknown), MRS BINTU MAHMUD
2011-03-15 17:09 How to put extra clock cycles on i2c cavinci, problems on omapl138 (logic pd som) Ben Gardiner
[not found] ` <AANLkTi=opkM3WW2v3xV=ox9HwD__WjqQuh3sM6Vh7fLj-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-03-15 21:08 ` (unknown), Ben Gardiner
2011-03-01 23:45 (unknown), Mr. henry
2010-11-05 14:56 (unknown), Mr. Vincent Cheng Hoi Chuen
2010-11-05 14:52 (unknown), Mr. Vincent Cheng Hoi Chuen
2010-10-15 8:55 (unknown), WESTERN UNION TRANSFER
2010-09-13 19:47 [PATCH 00/25] treewide-next: Use static const char arrays Joe Perches
2010-09-14 9:14 ` (unknown) David Howells
2010-08-27 0:25 (unknown), Vincent Cheng Hoi Chuen
2010-07-17 8:06 (unknown), Grant Mayor
2010-04-14 12:54 (unknown) Alan Cox
2009-07-27 16:23 (unknown) vivianofferplc013-+MseY0pMZYIAvxtiuMwx3w
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).