From: Jarkko Nikula <jarkko.nikula@linux.intel.com> To: Rajat Jain <rajatja@google.com>, Daniel Mack <daniel@zonque.org>, Haojian Zhuang <haojian.zhuang@gmail.com>, Robert Jarzmik <robert.jarzmik@free.fr>, Mark Brown <broonie@kernel.org>, linux-arm-kernel@lists.infradead.org, linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Evan Green <evgreen@chromium.org>, rajatxjain@gmail.com, evgreen@google.com, shobhit.srivastava@intel.com, porselvan.muthukrishnan@intel.com, Andy Shevchenko <andriy.shevchenko@linux.intel.com> Subject: Re: Date: Wed, 12 Feb 2020 11:30:51 +0200 [thread overview] Message-ID: <b3397374-0cb8-cf6c-0555-34541a1c108c@linux.intel.com> (raw) In-Reply-To: <20200211223400.107604-1-rajatja@google.com> Hi + Andy On 2/12/20 12:34 AM, Rajat Jain wrote: > From: Evan Green <evgreen@chromium.org> > > Date: Wed, 29 Jan 2020 13:54:16 -0800 > Subject: [PATCH] spi: pxa2xx: Add CS control clock quirk > This patch subject is missing from mail subject. > In some circumstances on Intel LPSS controllers, toggling the LPSS > CS control register doesn't actually cause the CS line to toggle. > This seems to be failure of dynamic clock gating that occurs after > going through a suspend/resume transition, where the controller > is sent through a reset transition. This ruins SPI transactions > that either rely on delay_usecs, or toggle the CS line without > sending data. > > Whenever CS is toggled, momentarily set the clock gating register > to "Force On" to poke the controller into acting on CS. > Could you share the test case how to trigger this? What's the platform here? I'd like to check does this reproduce on other Intel LPSS platforms so is there need to add quirk for them too. > Signed-off-by: Evan Green <evgreen@chromium.org> > Signed-off-by: Rajat Jain <rajatja@google.com> > --- > drivers/spi/spi-pxa2xx.c | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c > index 4c7a71f0fb3e..2e318158fca9 100644 > --- a/drivers/spi/spi-pxa2xx.c > +++ b/drivers/spi/spi-pxa2xx.c > @@ -70,6 +70,10 @@ MODULE_ALIAS("platform:pxa2xx-spi"); > #define LPSS_CAPS_CS_EN_SHIFT 9 > #define LPSS_CAPS_CS_EN_MASK (0xf << LPSS_CAPS_CS_EN_SHIFT) > > +#define LPSS_PRIV_CLOCK_GATE 0x38 > +#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK 0x3 > +#define LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON 0x3 > + > struct lpss_config { > /* LPSS offset from drv_data->ioaddr */ > unsigned offset; > @@ -86,6 +90,8 @@ struct lpss_config { > unsigned cs_sel_shift; > unsigned cs_sel_mask; > unsigned cs_num; > + /* Quirks */ > + unsigned cs_clk_stays_gated : 1; > }; > > /* Keep these sorted with enum pxa_ssp_type */ > @@ -156,6 +162,7 @@ static const struct lpss_config lpss_platforms[] = { > .tx_threshold_hi = 56, > .cs_sel_shift = 8, > .cs_sel_mask = 3 << 8, > + .cs_clk_stays_gated = true, > }, > }; > > @@ -383,6 +390,22 @@ static void lpss_ssp_cs_control(struct spi_device *spi, bool enable) > else > value |= LPSS_CS_CONTROL_CS_HIGH; > __lpss_ssp_write_priv(drv_data, config->reg_cs_ctrl, value); > + if (config->cs_clk_stays_gated) { > + u32 clkgate; > + > + /* > + * Changing CS alone when dynamic clock gating is on won't > + * actually flip CS at that time. This ruins SPI transfers > + * that specify delays, or have no data. Toggle the clock mode > + * to force on briefly to poke the CS pin to move. > + */ > + clkgate = __lpss_ssp_read_priv(drv_data, LPSS_PRIV_CLOCK_GATE); > + value = (clkgate & ~LPSS_PRIV_CLOCK_GATE_CLK_CTL_MASK) | > + LPSS_PRIV_CLOCK_GATE_CLK_CTL_FORCE_ON; > + > + __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, value); > + __lpss_ssp_write_priv(drv_data, LPSS_PRIV_CLOCK_GATE, clkgate); > + } > } > I wonder is it enough to have this quick toggling only or is time or actually number of clock cycles dependent? Now there is no delay between but I'm thinking if it needs certain number cycles does this still work when using low ssp_clk rates similar than in commit d0283eb2dbc1 ("spi: pxa2xx: Add output control for multiple Intel LPSS chip selects"). I'm thinking can this be done only once after resume and may other LPSS blocks need the same? I.e. should this be done in drivers/mfd/intel-lpss.c? Jarkko
next prev parent reply other threads:[~2020-02-12 9:30 UTC|newest] Thread overview: 388+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-02-11 22:34 Rajat Jain 2020-02-12 9:30 ` Jarkko Nikula [this message] 2020-02-12 10:24 ` Andy Shevchenko [not found] <CANiq72k+5Rdj7i3Df2dcE6_OPYPXK3z5EWLKnY56sSMz4G3OvA@mail.gmail.com> [not found] ` <CAABZP2z64aYWfVSdXHaQopWc+BAbJJUGqtrju2iWER3DDTDFWg@mail.gmail.com> [not found] ` <20220406170012.GO4285@paulmck-ThinkPad-P17-Gen-1> [not found] ` <87pmls6nt7.fsf@mpe.ellerman.id.au> [not found] ` <87k0bz7i1s.fsf@mpe.ellerman.id.au> 2022-04-13 5:11 ` Nicholas Piggin 2022-04-22 15:53 ` Thomas Gleixner 2022-04-23 2:29 ` Re: Nicholas Piggin -- strict thread matches above, loose matches on Subject: below -- 2022-04-21 16:41 Yury Norov 2022-04-21 23:04 ` John Hubbard 2022-04-21 23:09 ` Re: John Hubbard 2022-04-21 23:17 ` Re: Yury Norov 2022-04-21 23:21 ` Re: John Hubbard 2022-03-25 6:30 Michael S. Tsirkin 2022-03-25 7:52 ` Jason Wang 2022-03-25 9:10 ` Re: Michael S. Tsirkin 2022-03-25 9:20 ` Re: Jason Wang 2022-03-25 10:09 ` Re: Michael S. Tsirkin 2022-03-28 4:56 ` Re: Jason Wang 2022-03-28 5:59 ` Re: Michael S. Tsirkin 2022-03-28 6:18 ` Re: Jason Wang 2022-03-28 10:40 ` Re: Michael S. Tsirkin 2022-03-29 7:12 ` Re: Jason Wang 2022-03-29 14:08 ` Re: Michael S. Tsirkin 2022-03-30 2:40 ` Re: Jason Wang 2022-03-30 5:14 ` Re: Michael S. Tsirkin 2022-03-30 5:53 ` Re: Jason Wang 2022-03-29 8:35 ` Re: Thomas Gleixner 2022-03-29 14:37 ` Re: Michael S. Tsirkin 2022-03-29 18:13 ` Re: Thomas Gleixner 2022-03-29 22:04 ` Re: Michael S. Tsirkin 2022-03-30 2:38 ` Re: Jason Wang 2022-03-30 5:09 ` Re: Michael S. Tsirkin 2022-03-30 5:53 ` Re: Jason Wang 2022-04-12 6:55 ` Re: Michael S. Tsirkin 2022-01-20 15:28 Myrtle Shah 2022-01-20 15:37 ` Vitaly Wool 2022-01-20 23:29 ` Re: Damien Le Moal 2022-02-04 21:45 ` Re: Palmer Dabbelt [not found] <20211126221034.21331-1-lukasz.bartosik@semihalf.com--annotate> 2021-11-29 21:59 ` Re: sean.wang 2021-11-02 9:48 [PATCH v5 00/11] Add support for X86/ACPI camera sensor/PMIC setup with clk and regulator platform data Hans de Goede 2021-11-02 9:49 ` [PATCH v5 05/11] clk: Introduce clk-tps68470 driver Hans de Goede [not found] ` <163588780885.2993099.2088131017920983969@swboyd.mtv.corp.google.com> 2021-11-25 15:01 ` Hans de Goede [not found] <CAP7CzPcLhtXDyLudfmR2pWR5fzSQ_jhJSoRheH=cytoDnb_ujg@mail.gmail.com> 2021-09-14 15:37 ` Re: Nick Desaulniers 2021-08-12 9:21 Valdis Klētnieks 2021-08-12 9:42 ` SeongJae Park 2021-08-12 20:19 ` Re: Andrew Morton 2021-08-13 8:14 ` Re: SeongJae Park 2021-07-27 2:59 [PATCH v9] iomap: Support file tail packing Gao Xiang 2021-07-27 15:10 ` Darrick J. Wong 2021-07-27 15:23 ` Andreas Grünbacher 2021-07-27 15:30 ` Re: Gao Xiang 2021-06-06 19:19 Davidlohr Bueso 2021-06-07 16:02 ` André Almeida 2021-04-05 0:01 Mitali Borkar 2021-04-06 7:03 ` Arnd Bergmann [not found] <CAPncsNOFoUt7uEDEdihDTZY4pJsuPxt146W-L+Ju53SgZ6ezYw@mail.gmail.com> [not found] ` <CAPncsNMWCim1kozMyJaT7_suEnWyGadf1Kg1fzjyWfdGDVMZ3A@mail.gmail.com> [not found] ` <CAPncsNOpMhn=N+9+uC8hx0shRE-5uhvHCmZKJ8X3=aAeja1sag@mail.gmail.com> 2021-03-18 6:51 ` Re: Jarvis Jiang 2021-01-19 0:10 David Howells 2021-01-20 14:46 ` Jarkko Sakkinen [not found] <CAGMNF6W8baS_zLYL8DwVsbfPWTP2ohzRB7xutW0X=MUzv93pbA@mail.gmail.com> 2020-12-02 17:09 ` Re: Kun Yi 2020-12-02 1:10 [PATCH] lib/find_bit: Add find_prev_*_bit functions Yun Levi 2020-12-02 9:47 ` Andy Shevchenko 2020-12-02 10:04 ` Rasmus Villemoes 2020-12-02 11:50 ` Yun Levi [not found] ` <CAAH8bW-jUeFVU-0OrJzK-MuGgKJgZv38RZugEQzFRJHSXFRRDA@mail.gmail.com> 2020-12-02 18:22 ` Yun Levi 2020-12-02 21:26 ` Yury Norov 2020-12-02 22:51 ` Yun Levi 2020-12-03 1:23 ` Yun Levi 2020-12-03 8:33 ` Rasmus Villemoes 2020-12-03 9:47 ` Re: Yun Levi 2020-12-03 18:46 ` Re: Yury Norov 2020-12-03 18:52 ` Re: Willy Tarreau 2020-12-04 1:36 ` Re: Yun Levi 2020-12-04 18:14 ` Re: Yury Norov 2020-12-05 0:45 ` Re: Yun Levi 2020-12-05 11:10 ` Re: Rasmus Villemoes 2020-12-05 18:20 ` Re: Yury Norov 2020-08-05 11:02 [PATCH v4] arm64: dts: qcom: Add support for Xiaomi Poco F1 (Beryllium) Amit Pundir 2020-08-06 22:31 ` Konrad Dybcio 2020-08-12 13:37 ` Amit Pundir 2020-06-30 17:56 Vasiliy Kupriakov 2020-07-10 20:36 ` Andy Shevchenko 2020-05-06 5:52 Jiaxun Yang 2020-05-06 17:17 ` Nick Desaulniers [not found] <5e7dc543.vYG3wru8B/me1sOV%chenanqing@oppo.com> 2020-03-27 15:53 ` Re: Lee Duncan [not found] <5e7dbb10.ulraq/ljeOm297+z%chenanqing@oppo.com> 2020-03-27 8:59 ` Re: Ilya Dryomov 2020-03-03 15:27 Gene Chen 2020-03-04 14:56 ` Matthias Brugger 2020-03-04 15:15 ` Re: Lee Jones 2020-03-04 18:00 ` Re: Matthias Brugger [not found] <f618ed4d-05ce-75cd-8cd9-24d8fe5a2551@samsung.com> [not found] ` <CGME20191105044921epcas1p2869157cceaf45351adf9dd2e59161db7@epcas1p2.samsung.com> 2019-11-05 4:54 ` Re: Chanwoo Choi 2019-10-27 21:36 Re: Margaret Kwan Wing Han 2019-09-24 19:49 Venkat Subbiah [not found] <CAK8P3a16=ktJm5B3c5-XS7SqVuHBY5+E2FwVUqbdOdWK-AUgSA@mail.gmail.com> [not found] ` <20190830202959.3539-1-msuchanek@suse.de> 2019-08-30 20:32 ` Arnd Bergmann [not found] <E1hUrZM-0007qA-Q8@sslproxy01.your-server.de> 2019-05-29 19:54 ` Re: Alex Williamson 2019-05-21 0:06 [PATCH v6 0/3] add new ima hook ima_kexec_cmdline to measure kexec boot cmdline args Prakhar Srivastava 2019-05-21 0:06 ` [PATCH v6 2/3] add a new ima template field buf Prakhar Srivastava 2019-05-24 15:12 ` Mimi Zohar 2019-05-24 15:42 ` Roberto Sassu 2019-05-24 15:47 ` Re: Roberto Sassu 2019-05-24 18:09 ` Re: Mimi Zohar 2019-05-24 19:00 ` Re: prakhar srivastava 2019-05-24 19:15 ` Re: Mimi Zohar 2019-04-12 23:06 RE, Sharifah Ahmad Mustahfa [not found] <20190319144116.400-1-mlevitsk@redhat.com> 2019-03-20 11:03 ` Felipe Franciosi 2019-03-20 19:08 ` Re: Maxim Levitsky 2019-03-21 16:12 ` Re: Stefan Hajnoczi 2019-03-21 16:21 ` Re: Keith Busch 2019-03-21 16:41 ` Re: Felipe Franciosi 2019-03-21 17:04 ` Re: Maxim Levitsky 2019-03-22 7:54 ` Re: Felipe Franciosi 2019-03-22 10:32 ` Re: Maxim Levitsky 2019-03-22 15:30 ` Re: Keith Busch 2019-03-25 15:44 ` Re: Felipe Franciosi 2019-03-13 23:49 RE, LUIS EDUARDO CEPEDA CABRERA 2019-01-07 17:28 [PATCH] arch/arm/mm: Remove duplicate header Souptick Joarder 2019-01-17 11:23 ` Souptick Joarder 2019-01-17 11:28 ` Mike Rapoport 2019-01-31 5:54 ` Souptick Joarder 2019-01-31 12:58 ` Vladimir Murzin 2019-02-01 12:32 ` Re: Souptick Joarder 2019-02-01 12:36 ` Re: Vladimir Murzin 2019-02-01 12:41 ` Re: Souptick Joarder 2019-02-01 13:02 ` Re: Vladimir Murzin 2019-02-01 15:15 ` Re: Russell King - ARM Linux admin 2019-02-01 15:22 ` Re: Russell King - ARM Linux admin [not found] <CAMkWEXP4Mm5x9rdrKn9xRNVm7vxqoL62ftxb+UcJFAiJ+U9X3A@mail.gmail.com> 2018-10-22 0:26 ` Re: Dave Airlie 2018-10-21 20:23 ` Re: Michael Tirado 2018-10-22 1:50 ` Re: Dave Airlie 2018-10-21 22:20 ` Re: Michael Tirado 2018-10-23 1:47 ` Re: Michael Tirado 2018-10-23 6:23 ` Re: Dave Airlie [not found] <1530911788-7033-1-git-send-email-santosh.shilimkar@oracle.com> [not found] ` <1530911788-7033-3-git-send-email-santosh.shilimkar@oracle.com> 2018-07-06 21:18 ` Re: Santosh Shilimkar 2018-01-11 17:16 Fabian Huegel 2018-01-11 17:25 ` Ben Evans 2017-11-13 14:55 Re: Amos Kalonzo 2017-09-07 8:50 Re: Quick Loan 2017-08-18 19:47 Re: Jessy 2017-07-31 23:46 TD CREDIT 2017-07-15 3:29 Saif Al-Islam 2017-07-07 17:04 Mrs Alice Walton 2017-05-28 13:39 RE: Lasek László 2017-05-03 6:23 H.A 2017-04-28 8:20 Anatolij Gustschin 2017-04-28 8:43 ` Linus Walleij 2017-04-28 9:26 ` Re: Anatolij Gustschin 2017-02-23 15:09 Qin's Yanjun 2017-01-07 14:47 Information 2016-11-15 4:40 Apply 2016-11-08 13:46 vaserman 2016-11-02 2:36 U 2016-07-21 21:50 Amit Jain 2016-07-04 15:47 Re: Mr. Bun Sam 2016-07-02 11:30 Re: Mr. Bun Sam 2016-06-27 8:24 Re: Fidelity Loans 2016-02-10 14:36 Petr Mladek 2016-02-10 14:44 ` Steven Rostedt 2016-02-08 3:11 Qatar Foundation 2016-01-26 20:52 Ms Nadia Mohammed 2016-01-15 2:39 Re: Trust Guarantee 2015-12-18 11:50 Re: 2015-12-11 9:30 Re: Матвеева Руслана [not found] <D0613EBE33E8FD439137DAA95CCF59555B7A5A4D@MGCCCMAIL2010-5.mgccc.cc.ms.us> 2015-11-24 13:21 ` Amis, Ryann [not found] <CA+47Ykimr0d9cR35aWoCtm8JoXUYjKFXL0HJ-c=EE_suTAPR8w@mail.gmail.com> 2015-11-07 17:33 ` bbmbbm1 2015-11-07 16:48 Re: Mohammed 2015-10-29 2:40 2015-10-23 14:46 RE: MajorAlan 2015-10-21 2:26 Mohammed 2015-10-08 8:30 Re BRGF 2015-09-01 16:06 Zariya 2015-09-01 14:14 Mika Penttilä 2015-09-01 15:22 ` Fabio Estevam 2015-09-01 12:01 Re: Zariya 2015-08-19 13:01 Re: christain147 2015-07-24 10:34 Re: Mrs Nadia Mohammed [not found] <CACy=+DtdZOUT4soNZ=zz+_qhCfM=C8Oa0D5gjRC7QM3nYi4oEw@mail.gmail.com> 2015-07-11 18:37 ` Re: Mustapha Abiola [not found] <CAHxZcryF7pNoENh8vpo-uvcEo5HYA5XgkZFWrLEHM5Hhf5ay+Q@mail.gmail.com> 2015-07-05 16:38 ` Re: t0021 [not found] <E1Yz4NQ-0000Cw-B5@feisty.vs19.net> 2015-05-31 15:37 ` Re: Roman Volkov 2015-05-31 15:53 ` Re: Hans de Goede 2015-05-22 0:17 Re: kontakt [not found] <90BA5B564A2E4B4782C6F4398C32EE104E54369A@NHS-PCLI-MBC003.AD1.NHS.NET> 2015-05-21 10:49 ` Ratnakumar Sagana (KING'S COLLEGE HOSPITAL NHS FOUNDATION TRUST) [not found] <9E5F73AAFC185F49B0D37FE62E65D6C20724A9D8@XSERVER23A.campus.tue.nl> 2015-05-10 13:03 ` RE: Singer, W.P. 2015-04-21 7:43 Galaxy Darlehen Firma [not found] <CAONCqDfSP9DSWwPSDqz4NS6YHmzwMo=6VnRURRAJZLeGE_QKYA@mail.gmail.com> 2015-04-07 18:47 ` Re: Wilson Aggard 2015-04-01 21:56 Re: Globale Trust Company 2015-03-04 10:29 Quentin Lambert 2015-03-04 10:32 ` Quentin Lambert 2014-12-18 18:08 Re: Peter Page 2014-12-01 13:02 Re: Quan Han 2014-11-14 20:49 Re: salim 2014-11-14 18:56 milke [not found] <E1XgbTy-00072R-N3@feisty.vs19.net> 2014-10-21 15:48 ` Patrik Lundquist [not found] <E1Xf0HT-0005ZQ-OP@feisty.vs19.net> 2014-10-17 5:49 ` Re: Hillf Danton 2014-10-13 6:18 Re: geohughes [not found] <5633293EA8BBC640804038866F5D329F0B3A17@mail00.baptist.local> 2014-09-30 17:20 ` Sonya Wright 2014-09-20 19:45 Richard Wong 2014-09-16 14:54 Re: promocion_derechos.isna [not found] <AB37FB01B00BF44E85C75F6CFEC35E7D47324643@LPPTCPMXMBX01.LPCH.NET> 2014-09-15 23:42 ` Mandic, Andrew 2014-09-16 0:44 ` RE: Mandic, Andrew [not found] <6A286AB51AD8EC4180C4B2E9EF1D0A027AAD7EFF1E@exmb01.wrschool.net> 2014-09-08 16:58 ` RE: Deborah Mayher 2014-08-18 15:38 Mrs. Hajar Vaserman. [not found] <E1XFOD5-00007y-8L@feisty.vs19.net> 2014-08-07 14:23 ` Re: Pranith Kumar 2014-07-29 7:17 Re: eye2eye [not found] <blk-mq updates> 2014-04-14 8:30 ` Christoph Hellwig 2014-04-15 20:16 ` Jens Axboe 2014-03-10 3:04 Re: inforbonus 2014-03-10 3:01 Re: inforbonus 2014-01-11 2:11 Re: Mr. Jerry Natai 2013-12-30 10:43 st2 2013-12-30 9:06 RE: funds2 2013-12-20 11:49 RE: Unify Loan Company 2013-11-30 3:46 Bin Sumari 2013-11-07 12:09 Re: mypersonalmailbox1 2013-09-03 23:50 Matthew Garrett 2013-09-04 15:53 ` Kees Cook 2013-09-04 16:05 ` Re: Josh Boyer 2013-08-23 18:04 Andreas Werner 2013-08-23 21:10 ` Andy Lutomirski [not found] <B719EF0A9FB7A247B5147CD67A83E60E011FEB76D1@EXCH10-MB3.paterson.k12.nj.us> 2013-08-23 10:47 ` Ruiz, Irma 2013-08-07 20:43 Western Union 2013-07-08 4:52 Re: Wesstern Union money Transfer 2013-06-28 10:14 Re: emirates 2013-06-28 10:12 Re: emirates 2013-06-20 12:28 tingwei liu 2013-06-20 12:51 ` Jiri Slaby 2013-06-24 1:43 ` Re: tingwei liu 2013-06-24 8:24 ` Re: Jiri Slaby [not found] ` <CA+qZnSSPxO3h0v7An3R7e-HHs+bi4Ua-LE9coJtQL8CFWOHNBA@mail.gmail.com> 2013-06-27 5:12 ` Re: tingwei liu 2013-05-14 13:07 Re: info 2013-04-27 13:20 PRIVATE BUSINESS 2013-04-02 13:29 Mrs Akilah Saeedi 2013-03-26 2:26 Re: Mrs Akilah Saeedi 2013-02-04 0:47 Re: JUMBO PROMO 2013-01-27 21:59 Re: Congjun Yang 2013-01-13 19:58 Re: Michael A. Purwoadi 2012-11-21 14:04 roman 2012-11-21 14:50 ` Alan Cox 2012-10-30 9:19 Re: wumin_tsinghua 2012-10-06 23:15 David Howells 2012-10-07 6:36 ` Geert Uytterhoeven 2012-10-11 9:57 ` Re: Will Deacon 2012-09-04 14:40 [GIT PULL] sound fixes for 3.6-rc5 Takashi Iwai 2012-09-06 6:02 ` Markus Trippelsdorf 2012-09-06 6:33 ` Re: Daniel Mack 2012-09-06 6:45 ` Re: Markus Trippelsdorf 2012-09-06 6:48 ` Re: Takashi Iwai 2012-09-06 6:53 ` Re: Markus Trippelsdorf 2012-08-10 5:32 devendra.aaru 2012-08-10 8:45 ` Linus Walleij 2012-08-10 10:47 ` Re: Bernd Petrovitsch 2012-08-09 13:54 Fengguang Wu 2012-08-09 17:29 ` Mauro Carvalho Chehab 2012-08-06 16:59 anish kumar 2012-08-06 17:05 ` Maarten Lankhorst 2012-07-12 11:43 Re: macckone 2012-06-18 9:44 sakthiperumal karuthasamy 2012-06-18 11:52 ` 2012-05-20 22:20 Re: Mr. Peter Wong 2011-12-13 3:49 Re: Ryan Black 2011-11-22 12:06 Re: Balbir Singh 2011-11-09 11:58 Re: pradeep Annavarapu 2011-11-08 1:58 linux-next: manual merge of the bluetooth tree with Linus tree Stephen Rothwell 2011-11-08 2:26 ` Wu Fengguang 2011-11-08 4:40 ` Stephen Rothwell 2011-10-28 16:03 Re: Young Chang 2011-10-28 15:55 Re: Young Chang 2011-10-26 20:51 Re: bfeely 2011-08-21 19:22 Re: jeffrice 2011-08-18 22:07 San Mehat 2011-08-18 22:08 ` San Mehat 2011-08-13 10:59 Mr. Kenneth Williams 2011-08-06 13:23 RE: John Coker 2011-07-22 0:32 Jason Baron 2011-07-22 0:57 ` Paul Turner 2011-05-23 9:11 Re: Young Chang 2011-05-18 15:57 Re: alex zaim 2011-05-06 18:52 Nat Gurumoorthy 2011-05-06 19:13 ` Guenter Roeck 2011-05-06 20:00 ` Re: Natarajan Gurumoorthy 2011-05-01 13:35 Re: lotto 2011-04-10 1:20 Re: Young Chang 2011-04-07 21:00 Re: Tim Peters 2011-02-23 9:18 Irish Online News Center 2011-02-01 16:39 young chang 2010-12-04 21:06 FreeLotto Online Promo [not found] <3E0D78C2-CEAF-42C3-9840-20B01AA4EFC7@vsecurity.com> 2010-11-21 18:33 ` Dan J. Rosenberg 2010-11-22 17:02 ` Re: Vasiliy Kulikov 2010-10-14 11:47 Re : World Bank 2010-10-09 17:52 Mr.Young Chang 2010-07-20 0:22 Re: wins 2010-07-17 3:37 Re: SINOPEC OIL AND GAS COMPANY 2010-07-11 21:42 Western Union 2010-07-11 22:23 ` Noah McNallie [not found] <7a07eea248913e9f.4c3919f6@access.k12.wv.us> 2010-07-11 0:49 ` Re: tkprice 2010-07-02 20:13 Re: ($10,500,000.00) Donation for Charitable Goals 2010-07-02 19:29 Re: ($10,500,000.00) Donation for Charitable Goals 2010-07-01 16:09 Re ! BRITISH COLUMBIA 2010-07-01 10:49 FUJITA Tomonori 2010-07-01 12:29 ` Jens Axboe 2010-06-14 20:26 [PATCH 0/8] Fix gcc 4.6.0 set but not used warning messages Justin P. Mattock 2010-06-14 20:26 ` [PATCH 7/8]ieee1394/sdp2 Fix warning: variable 'unit_characteristics' set but not used Justin P. Mattock 2010-06-14 21:44 ` [PATCH] ieee1394: sbp2: remove unused code Stefan Richter 2010-06-14 22:35 ` Justin P. Mattock 2010-06-14 23:22 ` Stefan Richter 2010-06-14 23:58 ` Justin P. Mattock 2010-06-13 6:16 Mike Gilks 2010-06-13 8:58 ` Tejun Heo 2010-06-08 4:27 FRL 2010-06-08 4:05 RE: FRL 2010-05-11 22:28 RE: Euro-Millions [not found] <20100510223054.luv5qlqdlp28g08o@webmail.wcsd.k12.oh.us> [not found] ` <20100510223506.77ylw39bns84c80c@webmail.wcsd.k12.oh.us> [not found] ` <20100510223656.m8nzy8mwqf44g8g8@webmail.wcsd.k12.oh.us> 2010-05-11 4:19 ` Mr. Vincent Hong 2010-05-08 2:56 Promo 2010-05-08 0:01 IRISH NEWS CENTRE 2010-05-07 11:39 Re: William Wilcox 2010-05-07 11:37 Re: William Wilcox 2010-04-14 12:54 Alan Cox 2010-04-14 13:35 ` Jean Delvare 2010-04-02 23:17 RE; Mrs Claire page 2010-03-23 7:50 RE, FROM CENTRAL BANK 2010-03-11 16:40 Monica D. 2010-02-25 13:39 Re; William Wilcox 2010-01-16 1:54 Capt Chris P. Mark 2010-01-13 0:48 Jeff Mahoney 2010-01-13 8:24 ` David Woodhouse 2010-01-09 17:03 Ustin Gavrie 2009-12-19 17:38 OFFICE OF THE SENATE 2009-12-12 16:04 T Dent 2009-12-13 5:55 ` andrew hendry 2009-12-08 6:23 Irish News Center 2009-11-26 1:03 [PATCH 1/2] hw_random: core updates to allow more efficient drivers Matt Mackall 2009-11-26 10:49 ` Ian Molton 2009-11-26 11:38 ` Matt Mackall 2009-11-26 11:48 ` Re: Ian Molton 2009-11-27 22:54 ` Re: Matt Mackall 2009-11-20 13:29 Jerome Glisse 2009-12-01 23:53 ` Dave Airlie 2009-12-02 7:17 ` Re: Thomas Hellstrom [not found] <cover.1257602781.git.andre.goddard@gmail.com> [not found] ` <7206ef594e67a240a842339f520284de6569b1fc.1257602781.git.andre.goddard@gmail.com> [not found] ` <31525.1257770343@redhat.com> 2009-11-09 15:31 ` Re: André Goddard Rosa 2009-11-05 3:24 Re: Irish News Centre 2009-11-01 17:00 Re: Irish News Centre 2009-10-10 19:13 Irish News Center 2009-09-26 15:22 RE: Irish News Center 2009-09-25 23:13 RE: Irish News Center 2009-06-20 19:45 Kay Sievers 2009-06-21 9:04 ` Takashi Iwai 2009-06-22 12:56 ` Re: David Woodhouse 2009-01-11 3:41 Jose Luis Marchetti 2009-01-11 5:44 ` Cooper Yuan 2008-11-30 11:23 Re: Frank 2008-10-11 7:30 Yudha Harimantoro T 2008-10-11 15:12 ` Bill Davidsen 2008-10-13 6:18 ` Re: Yudha Harimantoro T 2008-10-13 8:29 ` Re: Yudha Harimantoro T 2008-10-13 12:03 ` Re: Alan Jenkins [not found] <0K6B0005EN54GNO0@l-daemon> 2008-08-29 0:14 ` Re: Robert Hancock [not found] <alpine.LFD.1.10.0807271037190.3486@nehalem.linux-foundation.org> 2008-07-27 22:37 ` Trond Myklebust 2008-07-09 15:47 Mathieu Desnoyers 2008-07-09 16:07 ` Eduard - Gabriel Munteanu 2008-07-09 16:35 ` Re: Mathieu Desnoyers 2008-05-20 12:34 Lukas Hejtmanek 2008-05-20 12:40 ` Oliver Neukum 2008-04-09 8:45 Andreas Grimm 2008-04-10 1:14 ` Lee Revell 2008-02-03 11:13 am kara 2008-02-03 18:23 ` Benny Halevy 2007-11-10 1:18 Luck, Tony 2007-11-10 1:42 ` Eric Dumazet 2007-11-11 5:18 ` Re: David Miller 2007-08-14 23:04 [PATCH 0/24] make atomic_read() behave consistently across all architectures Chris Snook 2007-08-15 6:49 ` Herbert Xu 2007-08-15 8:18 ` Heiko Carstens 2007-08-15 13:53 ` Stefan Richter 2007-08-15 14:35 ` Satyam Sharma 2007-08-15 14:52 ` Herbert Xu 2007-08-15 16:09 ` Stefan Richter 2007-08-15 16:27 ` Paul E. McKenney 2007-08-15 18:31 ` Segher Boessenkool 2007-08-15 18:57 ` Paul E. McKenney 2007-08-15 19:54 ` Satyam Sharma 2007-08-15 20:47 ` Segher Boessenkool 2007-08-16 0:36 ` Satyam Sharma 2007-08-16 1:38 ` Segher Boessenkool 2007-08-07 16:34 Brian J. Murrell 2007-08-09 20:33 ` Mark Lord 2007-08-09 21:04 ` Re: Brian J. Murrell [not found] <FC1D1B23302A22499C60C967336B2AE00186B15C@pdsmsx411.ccr.corp.intel.com> 2007-07-24 13:40 ` Re: Shaohua Li 2007-02-09 6:29 Priyanka Sharma 2007-02-10 2:41 ` hackmiester (Hunter Fuller) 2006-08-16 9:30 Re: shane 2006-05-16 10:34 Chris Boot 2006-05-16 12:34 ` Arnaldo Carvalho de Melo 2006-03-11 1:00 Re: Alec 2006-03-03 14:54 Re: Kennedy 2006-02-23 12:16 Re: Norberto 2006-02-18 16:04 Re: Donne 2006-02-04 14:33 Re: Ira Jackson 2006-01-27 10:05 sarat 2006-01-27 10:09 ` Arjan van de Ven 2005-12-31 0:27 system keeps freezing once every 24 hours / random apps crashing Alistair John Strachan 2005-12-31 0:42 ` Mark v Wolher 2005-12-31 0:51 ` Alistair John Strachan 2005-12-31 0:54 ` Mark v Wolher 2005-12-31 10:31 ` Mark v Wolher 2005-12-31 11:08 ` Jesper Juhl 2005-12-31 11:40 ` Mark v Wolher 2005-12-31 11:49 ` Jesper Juhl 2005-12-31 12:46 ` Mark v Wolher 2005-12-31 15:18 ` Mark v Wolher 2005-12-31 16:34 ` Sami Farin 2005-12-31 16:48 ` Mark v Wolher 2006-01-01 2:26 ` Mark v Wolher 2006-01-01 13:06 ` Mark v Wolher 2006-01-01 14:47 ` Mark v Wolher 2006-01-01 18:38 ` Jiri Slaby 2006-01-01 18:49 ` Mark v Wolher 2006-01-01 19:12 ` Jiri Slaby 2006-01-01 19:37 ` Mark v Wolher 2005-12-02 16:03 Yu, Luming 2005-12-02 16:46 ` Dmitry Torokhov 2005-12-02 20:11 ` Re: Miloslav Trmac 2005-11-09 16:13 Nestor Velazquez 2005-11-09 16:17 ` Alejandro Bonilla 2005-09-21 13:20 Robert.Boermans 2005-09-21 13:27 ` Denis Vlasenko 2005-06-28 9:18 d binderman 2005-06-28 11:03 ` Andrew Morton 2005-06-28 9:15 d binderman 2005-06-28 11:00 ` Andrew Morton [not found] <360D47F92A8ACCH7@vger.kernel.org> 2005-05-30 2:49 ` Re: radej 2005-05-06 20:23 Edison Giovanny Mendoza 2005-05-06 20:32 ` Alejandro Bonilla 2005-03-25 7:03 Søren Lott 2005-03-25 7:18 ` Jeff Garzik 2005-03-20 5:24 Re: info 2005-03-08 16:32 Peter W. Morreale 2005-03-08 19:32 ` Ross Biro 2005-03-05 10:11 Raffaele Ianniello 2005-03-05 18:14 ` Randy.Dunlap 2005-02-26 14:57 Yong Haynes 2005-02-17 17:14 Deepti Patel 2005-02-17 17:46 ` Matthias-Christian Ott 2005-01-19 14:25 Gmail 2005-01-19 15:22 ` Paolo Ornati 2004-11-08 7:39 Marcelo Tosatti 2004-11-08 11:08 ` Paolo Ciarrocchi 2004-11-08 8:34 ` Re: Marcelo Tosatti 2004-11-08 22:08 ` Re: Guennadi Liakhovetski 2004-09-19 12:29 plt [not found] ` <200409191508.33537.Norbert@edusupport.nl> [not found] ` <1095607945.414da6891fc94@webmail.taylorassociate.com> 2004-09-19 16:31 ` Norbert van Nobelen 2004-06-27 14:18 Vinu Moses 2004-06-27 20:14 ` Vinu Moses 2004-03-17 22:03 Kendrick Logan 2004-03-07 20:08 Michael Frank 2004-03-07 20:26 ` John Bradford 2004-02-22 17:51 redzic fadil 2004-02-22 18:48 ` Larry Reaves 2004-02-14 23:17 Re: Alexandr Chernyy [not found] <7A25937D23A1E64C8E93CB4A50509C2A0310F099@stca204a.bus.sc.rolm.com> 2004-02-05 17:02 ` Re: Tommy Reynolds 2003-12-11 23:37 Hettinger Tamas 2003-12-12 1:29 ` Jonathan Corbet 2003-12-05 17:36 gmack 2003-12-05 23:16 ` Oliver Hunt 2003-12-03 15:08 Bloch, Jack 2003-12-04 4:56 ` Raj 2003-09-10 2:20 John Yau 2003-09-10 2:31 ` Nick Piggin 2003-08-25 13:53 Marcelo Tosatti 2003-08-25 14:12 ` Nick Piggin 2003-08-12 13:55 Catalin BOIE 2003-08-12 17:05 ` Ian Hastie 2003-07-16 18:36 Sir Ace 2003-07-16 23:10 ` jiho 2003-06-30 3:16 usenet 2003-06-30 8:09 ` Bruce Harada 2003-06-30 8:23 ` Re: Matti Aarnio 2003-06-03 23:51 Justin T. Gibbs 2003-06-03 23:58 ` Marc-Christian Petersen 2003-04-30 21:39 Mauricio Oliveira Carneiro 2003-05-01 0:03 ` Eyal Lebedinsky [not found] <001e01c2d9ef$01cdc970$0200a8c0@wsl3> 2003-02-21 21:34 ` Re: b_adlakha 2003-02-08 10:40 Re: Manfred Spraul 2003-01-12 13:28 Philip K.F. Hölzenspies 2003-01-12 17:57 ` Shawn Starr 2002-10-17 7:41 Rusty Russell 2002-10-17 14:49 ` Roman Zippel 2002-10-11 0:11 sridhar vaidyanathan 2002-10-11 0:21 ` Steven Dake 2002-09-29 10:11 Richard Cooper 2002-09-29 17:49 ` David Lloyd 2002-08-10 16:18 ½ÌÎ 2002-07-12 4:03 sanry 2002-06-08 21:35 tushar korde 2002-08-21 16:30 ` Daniel Phillips 2002-05-31 8:04 Oliver Pitzeier 2002-05-31 14:37 ` Alan Cox 2002-04-18 11:23 Satish Mohan 2002-04-18 11:35 ` François Cami 2002-04-09 13:25 Kuppuswamy, Priyadarshini 2002-03-31 19:17 mpaa3d 2002-04-01 9:43 ` Vance Lankhaar 2002-02-20 17:55 Torrey Hoffman 2001-12-25 16:17 Manfred Spraul 2001-12-25 19:14 ` Re: Legacy Fishtank 2001-12-25 21:23 ` Re: Kurt Roeckx 2001-12-25 22:03 ` Re: Alan Cox 2002-01-03 0:06 ` Re: David S. Miller 2002-01-03 0:23 ` Re: Alan Cox 2001-12-05 16:05 Romain Giry 2001-12-05 21:25 ` Dipak 2001-12-06 10:43 ` Re: Romain Giry 2001-12-06 11:28 ` Re: Alan Cox 2001-10-15 6:25 Dinesh Gandhewar 2001-10-15 6:56 ` David Ford 2001-10-15 16:02 ` Re: Timur Tabi 2001-10-02 15:30 Dinesh Gandhewar 2001-10-09 10:25 ` VDA 2001-10-02 15:29 Dinesh Gandhewar 2001-10-02 15:23 ` Tommy Reynolds 2001-10-02 15:32 ` Re: Alex Bligh - linux-kernel 2001-08-16 12:18 Re: Saravana 2001-08-14 3:08 Re: Parag Warudkar 2001-08-14 3:17 ` Re: Keith Owens 2001-07-25 18:44 Sumit Bhardwaj 2001-07-25 19:18 ` Matthew M 2001-06-11 4:58 kiran.thirumalai 2001-06-11 6:54 ` Anil Kumar 2001-05-22 4:25 Rajiv Majumdar 2001-05-08 19:48 Richard B. Johnson 2001-05-08 21:33 ` george anzinger 2001-05-09 13:04 ` Re: Richard B. Johnson 2001-05-09 14:10 ` Re: Alan Cox 2001-05-09 16:59 ` Re: george anzinger 2001-05-09 17:15 ` Re: Alan Cox 2001-05-09 0:36 ` Re: Andrew Morton 2001-04-18 0:15 Vibol Hou 2001-04-18 0:26 ` Jaquemet Loic 2001-04-18 0:32 ` Re: Jeff Garzik 2001-04-20 2:47 ` Re: Francois Cami 2001-04-21 1:26 ` Re: Andrew Morton 2001-03-22 18:02 Re: Gunnar Ahlberg 2001-01-19 13:37 Robert Kaiser 2001-01-19 14:33 ` Michael Rothwell
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=b3397374-0cb8-cf6c-0555-34541a1c108c@linux.intel.com \ --to=jarkko.nikula@linux.intel.com \ --cc=andriy.shevchenko@linux.intel.com \ --cc=broonie@kernel.org \ --cc=daniel@zonque.org \ --cc=evgreen@chromium.org \ --cc=evgreen@google.com \ --cc=haojian.zhuang@gmail.com \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-spi@vger.kernel.org \ --cc=porselvan.muthukrishnan@intel.com \ --cc=rajatja@google.com \ --cc=rajatxjain@gmail.com \ --cc=robert.jarzmik@free.fr \ --cc=shobhit.srivastava@intel.com \ --subject='Re:' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
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).