* (no subject)
@ 2010-01-20 19:47 Ben Gamari
2010-01-21 0:04 ` Ben Dooks
` (5 more replies)
0 siblings, 6 replies; 53+ messages in thread
From: Ben Gamari @ 2010-01-20 19:47 UTC (permalink / raw)
To: Ben Dooks
Cc: David Brownell, Michael Hennerich, beagleboard, Eric Miao,
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-omap
Bcc:
Subject: GPIO chip select support in omap2_mcspi driver
Hey,
Recently I have been looking to use a BeagleBoard to drive several
serial ADCs and DACs in a data acquisition and analysis setup. Unfortunately, the
BeagleBoard is severely limited by the number of SPI controllers it
exposes on the expansion connector (McSPI3 with 2 CS lines and McSPI4
with one). This is insufficient for our application and thus I have been
investigating adding support to the mcspi driver for using GPIO lines as
chip select lines, as is done in the pxa2xx, bfin5xx, and s3c24xx drivers.
To this end, I have a few questions about how this support was
implemented. First, it seems that the s3c24xx driver is built on the
spi_bitbang driver, despite interfacing with a dedicated hardware SPI
controller. What is the reason for this? Was this done specifically for
the purpose of incorporating support for GPIO CS pins?
It seems like the rough idea is to add a cs_gpio field to the device
struct (omap2_mcspi) and add the appropriate code to the
omap2_mcspi_force_cs() to bring cs_gpio high or low if it is valid. The
potential problem I can see with this is that omap2_mcspi_set_enable()
is called to enable the channel before the force_cs() is called (in
omap2_mcspi_work()). If I'm interpreting the documentation correctly,
the enable bit starts the clocks, meaning that the chip will begin
clocking out data before CS is brought high. I must be missing something
here, no?
For reference, I included a short list of relevant commits below, largely for
my own benefit. I would greatly appreciate any feedback you might have.
Thanks,
- Ben
pxa2xx_spi: a7bb3909b3293d503211d7f6af8ed62c1644b686
bfin_spi: 42c78b2bf51bafb4cfa98dfecc28dd9b8bcd04b0
------------------------------------------------------------------------------
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re:
2010-01-20 19:47 (no subject) Ben Gamari
@ 2010-01-21 0:04 ` Ben Dooks
2010-01-21 0:04 ` (no subject) Ben Dooks
` (4 subsequent siblings)
5 siblings, 0 replies; 53+ messages in thread
From: Ben Dooks @ 2010-01-21 0:04 UTC (permalink / raw)
To: Ben Gamari
Cc: beagleboard, linux-omap, David Brownell, Eric Miao,
Michael Hennerich, Grant Likely, spi-devel-general
Ben Gamari wrote:
> Bcc:
> Subject: GPIO chip select support in omap2_mcspi driver
>
> Hey,
>
> Recently I have been looking to use a BeagleBoard to drive several
> serial ADCs and DACs in a data acquisition and analysis setup. Unfortunately, the
> BeagleBoard is severely limited by the number of SPI controllers it
> exposes on the expansion connector (McSPI3 with 2 CS lines and McSPI4
> with one). This is insufficient for our application and thus I have been
> investigating adding support to the mcspi driver for using GPIO lines as
> chip select lines, as is done in the pxa2xx, bfin5xx, and s3c24xx drivers.
>
> To this end, I have a few questions about how this support was
> implemented. First, it seems that the s3c24xx driver is built on the
> spi_bitbang driver, despite interfacing with a dedicated hardware SPI
> controller. What is the reason for this? Was this done specifically for
> the purpose of incorporating support for GPIO CS pins?
The spi_bitbang driver also has a really useful spi queue and workqueue
built into it, which is what the s3c24xx spi driver actually bothers to
use.
> It seems like the rough idea is to add a cs_gpio field to the device
> struct (omap2_mcspi) and add the appropriate code to the
> omap2_mcspi_force_cs() to bring cs_gpio high or low if it is valid. The
> potential problem I can see with this is that omap2_mcspi_set_enable()
> is called to enable the channel before the force_cs() is called (in
> omap2_mcspi_work()). If I'm interpreting the documentation correctly,
> the enable bit starts the clocks, meaning that the chip will begin
> clocking out data before CS is brought high. I must be missing something
> here, no?
>
> For reference, I included a short list of relevant commits below, largely for
> my own benefit. I would greatly appreciate any feedback you might have.
>
> Thanks,
> - Ben
>
>
> pxa2xx_spi: a7bb3909b3293d503211d7f6af8ed62c1644b686
> bfin_spi: 42c78b2bf51bafb4cfa98dfecc28dd9b8bcd04b0
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re: (no subject)
2010-01-20 19:47 (no subject) Ben Gamari
2010-01-21 0:04 ` Ben Dooks
@ 2010-01-21 0:04 ` Ben Dooks
2010-01-21 0:04 ` Ben Dooks
` (3 subsequent siblings)
5 siblings, 0 replies; 53+ messages in thread
From: Ben Dooks @ 2010-01-21 0:04 UTC (permalink / raw)
To: Ben Gamari
Cc: David Brownell, Michael Hennerich, beagleboard, Eric Miao,
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, linux-omap
Ben Gamari wrote:
> Bcc:
> Subject: GPIO chip select support in omap2_mcspi driver
>
> Hey,
>
> Recently I have been looking to use a BeagleBoard to drive several
> serial ADCs and DACs in a data acquisition and analysis setup. Unfortunately, the
> BeagleBoard is severely limited by the number of SPI controllers it
> exposes on the expansion connector (McSPI3 with 2 CS lines and McSPI4
> with one). This is insufficient for our application and thus I have been
> investigating adding support to the mcspi driver for using GPIO lines as
> chip select lines, as is done in the pxa2xx, bfin5xx, and s3c24xx drivers.
>
> To this end, I have a few questions about how this support was
> implemented. First, it seems that the s3c24xx driver is built on the
> spi_bitbang driver, despite interfacing with a dedicated hardware SPI
> controller. What is the reason for this? Was this done specifically for
> the purpose of incorporating support for GPIO CS pins?
The spi_bitbang driver also has a really useful spi queue and workqueue
built into it, which is what the s3c24xx spi driver actually bothers to
use.
> It seems like the rough idea is to add a cs_gpio field to the device
> struct (omap2_mcspi) and add the appropriate code to the
> omap2_mcspi_force_cs() to bring cs_gpio high or low if it is valid. The
> potential problem I can see with this is that omap2_mcspi_set_enable()
> is called to enable the channel before the force_cs() is called (in
> omap2_mcspi_work()). If I'm interpreting the documentation correctly,
> the enable bit starts the clocks, meaning that the chip will begin
> clocking out data before CS is brought high. I must be missing something
> here, no?
>
> For reference, I included a short list of relevant commits below, largely for
> my own benefit. I would greatly appreciate any feedback you might have.
>
> Thanks,
> - Ben
>
>
> pxa2xx_spi: a7bb3909b3293d503211d7f6af8ed62c1644b686
> bfin_spi: 42c78b2bf51bafb4cfa98dfecc28dd9b8bcd04b0
------------------------------------------------------------------------------
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re:
2010-01-20 19:47 (no subject) Ben Gamari
2010-01-21 0:04 ` Ben Dooks
2010-01-21 0:04 ` (no subject) Ben Dooks
@ 2010-01-21 0:04 ` Ben Dooks
2010-01-22 15:53 ` Re: Ben Gamari
` (2 subsequent siblings)
5 siblings, 0 replies; 53+ messages in thread
From: Ben Dooks @ 2010-01-21 0:04 UTC (permalink / raw)
To: Ben Gamari
Cc: beagleboard, linux-omap, David Brownell, Eric Miao,
Michael Hennerich, Grant Likely,
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1981 bytes --]
Ben Gamari wrote:
> Bcc:
> Subject: GPIO chip select support in omap2_mcspi driver
>
> Hey,
>
> Recently I have been looking to use a BeagleBoard to drive several
> serial ADCs and DACs in a data acquisition and analysis setup. Unfortunately, the
> BeagleBoard is severely limited by the number of SPI controllers it
> exposes on the expansion connector (McSPI3 with 2 CS lines and McSPI4
> with one). This is insufficient for our application and thus I have been
> investigating adding support to the mcspi driver for using GPIO lines as
> chip select lines, as is done in the pxa2xx, bfin5xx, and s3c24xx drivers.
>
> To this end, I have a few questions about how this support was
> implemented. First, it seems that the s3c24xx driver is built on the
> spi_bitbang driver, despite interfacing with a dedicated hardware SPI
> controller. What is the reason for this? Was this done specifically for
> the purpose of incorporating support for GPIO CS pins?
The spi_bitbang driver also has a really useful spi queue and workqueue
built into it, which is what the s3c24xx spi driver actually bothers to
use.
> It seems like the rough idea is to add a cs_gpio field to the device
> struct (omap2_mcspi) and add the appropriate code to the
> omap2_mcspi_force_cs() to bring cs_gpio high or low if it is valid. The
> potential problem I can see with this is that omap2_mcspi_set_enable()
> is called to enable the channel before the force_cs() is called (in
> omap2_mcspi_work()). If I'm interpreting the documentation correctly,
> the enable bit starts the clocks, meaning that the chip will begin
> clocking out data before CS is brought high. I must be missing something
> here, no?
>
> For reference, I included a short list of relevant commits below, largely for
> my own benefit. I would greatly appreciate any feedback you might have.
>
> Thanks,
> - Ben
>
>
> pxa2xx_spi: a7bb3909b3293d503211d7f6af8ed62c1644b686
> bfin_spi: 42c78b2bf51bafb4cfa98dfecc28dd9b8bcd04b0
[-- Attachment #2: Type: text/plain, Size: 409 bytes --]
--
You received this message because you are subscribed to the Google Groups "Beagle Board" group.
To post to this group, send email to beagleboard-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to beagleboard+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit this group at http://groups.google.com/group/beagleboard?hl=en.
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re:
2010-01-20 19:47 (no subject) Ben Gamari
` (2 preceding siblings ...)
2010-01-21 0:04 ` Ben Dooks
@ 2010-01-22 15:53 ` Ben Gamari
2010-01-28 4:10 ` McSPI questions pertaining to GPIO chip select support Ben Gamari
[not found] ` <1264651770-sup-5197@ben-laptop>
5 siblings, 0 replies; 53+ messages in thread
From: Ben Gamari @ 2010-01-22 15:53 UTC (permalink / raw)
To: Ben Gamari
Cc: Ben Dooks, beagleboard, linux-omap, David Brownell, Eric Miao,
Michael Hennerich, Grant Likely, spi-devel-general
Excerpts from Ben Gamari's message of Wed Jan 20 14:47:23 -0500 2010:
> Bcc:
> Subject: GPIO chip select support in omap2_mcspi driver
>
> It seems like the rough idea is to add a cs_gpio field to the device
> struct (omap2_mcspi) and add the appropriate code to the
> omap2_mcspi_force_cs() to bring cs_gpio high or low if it is valid. The
> potential problem I can see with this is that omap2_mcspi_set_enable()
> is called to enable the channel before the force_cs() is called (in
> omap2_mcspi_work()). If I'm interpreting the documentation correctly,
> the enable bit starts the clocks, meaning that the chip will begin
> clocking out data before CS is brought high. I must be missing something
> here, no?
Could someone comment on how this ordering works? As I said, it seems to
me like the SPI controller starts sending before CS is brought high.
I would appreciate any feedback. Thanks!
- Ben
^ permalink raw reply [flat|nested] 53+ messages in thread
* McSPI questions pertaining to GPIO chip select support
2010-01-20 19:47 (no subject) Ben Gamari
` (3 preceding siblings ...)
2010-01-22 15:53 ` Re: Ben Gamari
@ 2010-01-28 4:10 ` Ben Gamari
[not found] ` <1264651770-sup-5197@ben-laptop>
5 siblings, 0 replies; 53+ messages in thread
From: Ben Gamari @ 2010-01-28 4:10 UTC (permalink / raw)
To: beagleboard, linux-omap, David Brownell, Eric Miao, Michael
Hey all!
Recently I've been thinking about adding support to the McSPI driver for
using GPIO pins as chip selects. As a starting point, I've browsed the
driver source trying to identify what changes would be necessary to add
this support. It seems like the rough idea is,
a) add a cs_gpio field to the device struct (omap2_mcspi)
b) modify omap2_mcspi_force_cs() to use cs_gpio instead of the
CHxCONF[FORCE] bit if cs_gpio is valid
Unfortunately, I'm having a bit of difficulty seeing how the existing
configuration works. In master mode, it seems that the controller is
configured in single forced channel mode (MCSPI_MODULECTRL_SINGLE). As
far as I can tell, this means that the driver is responsible for
managing the chip selects through the MCSPI_CHxCONF[FORCE] bits. It
seems that this is ideal as little will need to be changed to
incorporate GPIO CS support.
Nevertheless, the timing of the various operations isn't making sense to
me. As far as I understand it, the callgraph is as follows,
omap2_mcspi_work():
loop over messages
omap2_mcspi_set_enable(1)
loop over transfers:
configure bus parameters
if (!cs_active) cs = 1
if (dma):
omap2_mcspi_txrx_dma()
else:
omap2_mcspi_txrx_pio()
if (cs_change) cs = 0
end loop
if (cs_active) cs = 0
omap2_mcspi_set_enable(0)
end loop
It seems that omap2_mcspi_set_enable() is called to enable the channel
(MCSPI_CHCTRLx[EN] is set) before force_cs() is called. If I'm
interpreting the hardware documentation correctly, the enable bit (among
other things) starts the SPI clock, meaning that the chip will begin
clocking out zeros to the device before CS is brought high.
Furthermore, even after CS is brought high, it seems there could be a
fair amount of time before the chip begins actually clocking out valid
data.
As I am writing this, it now occurs to me that perhaps the chip doesn't
start SPI_CLK until it has data to send. It seems that if this were the
case my concerns would be resolved. However, it is not at all clear that
this is the case from the documentation. When exactly does the
controller start the bus clock? Is this stated explicitly anywhere in
the documentation?
Any input you could offer would be greatly appreciated.
Thanks for your time.
- Ben
P.S. The more and more I think about it, it seems like my hypothesis is
the only logical behavior. It would be great if someone could confirm my
suspicions, however. It really seems like this should be in the
documentation either way.
P.P.S. I apologize if this is something someone familiar with SPI should
just know. My knowledge is a little spotty on this sort of thing.
------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
^ permalink raw reply [flat|nested] 53+ messages in thread
[parent not found: <1264651770-sup-5197@ben-laptop>]
* Re: McSPI questions pertaining to GPIO chip select support
[not found] ` <1264651770-sup-5197@ben-laptop>
@ 2010-01-28 4:15 ` Bill Gatliff
2010-01-28 4:25 ` Ben Gamari
2010-01-28 4:33 ` jassi brar
2011-08-30 10:14 ` McSPI questions pertaining to GPIO chip select support Raju Sana
2 siblings, 1 reply; 53+ messages in thread
From: Bill Gatliff @ 2010-01-28 4:15 UTC (permalink / raw)
To: Ben Gamari
Cc: beagleboard, linux-omap, David Brownell, Eric Miao,
Michael Hennerich, Grant Likely, spi-devel-general
Ben Gamari wrote:
> As I am writing this, it now occurs to me that perhaps the chip doesn't
> start SPI_CLK until it has data to send.
... or receive. This is indeed the case.
b.g.
--
Bill Gatliff
Embedded systems training and consulting
http://billgatliff.com
bgat@billgatliff.com
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re: McSPI questions pertaining to GPIO chip select support
2010-01-28 4:15 ` Bill Gatliff
@ 2010-01-28 4:25 ` Ben Gamari
2010-01-28 4:27 ` Bill Gatliff
0 siblings, 1 reply; 53+ messages in thread
From: Ben Gamari @ 2010-01-28 4:25 UTC (permalink / raw)
To: Bill Gatliff
Cc: beagleboard, linux-omap, David Brownell, Eric Miao,
Michael Hennerich, Grant Likely, spi-devel-general
Excerpts from Bill Gatliff's message of Wed Jan 27 23:15:05 -0500 2010:
> Ben Gamari wrote:
> > As I am writing this, it now occurs to me that perhaps the chip doesn't
> > start SPI_CLK until it has data to send.
>
> ... or receive. This is indeed the case.
>
Thanks for your prompt reply. Hopefully you'll see a patch from me about
this in the next few days. I'm assuming this functionality would be
welcome in mainline?
- Ben
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re: McSPI questions pertaining to GPIO chip select support
2010-01-28 4:25 ` Ben Gamari
@ 2010-01-28 4:27 ` Bill Gatliff
0 siblings, 0 replies; 53+ messages in thread
From: Bill Gatliff @ 2010-01-28 4:27 UTC (permalink / raw)
To: Ben Gamari
Cc: beagleboard, linux-omap, David Brownell, Eric Miao,
Michael Hennerich, Grant Likely, spi-devel-general
Ben Gamari wrote:
> Thanks for your prompt reply. Hopefully you'll see a patch from me about
> this in the next few days. I'm assuming this functionality would be
> welcome in mainline?
>
Heck if I know. :)
But seriously, seems like SPI slave-selects are always in short supply.
So yeah, people will find your patches very useful.
b.g.
--
Bill Gatliff
Embedded systems training and consulting
http://billgatliff.com
bgat@billgatliff.com
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re: McSPI questions pertaining to GPIO chip select support
[not found] ` <1264651770-sup-5197@ben-laptop>
2010-01-28 4:15 ` Bill Gatliff
@ 2010-01-28 4:33 ` jassi brar
[not found] ` <1b68c6791001272033q60dd31dbif4de285cd9bac83d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
[not found] ` <1292954195-20204-2-git-send-email-bgamari.foss@gmail.com>
2011-08-30 10:14 ` McSPI questions pertaining to GPIO chip select support Raju Sana
2 siblings, 2 replies; 53+ messages in thread
From: jassi brar @ 2010-01-28 4:33 UTC (permalink / raw)
To: Ben Gamari
Cc: David Brownell, Michael Hennerich, beagleboard, Eric Miao,
spi-devel-general, linux-omap
On Thu, Jan 28, 2010 at 1:10 PM, Ben Gamari <bgamari.foss-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> Hey all!
>
> Recently I've been thinking about adding support to the McSPI driver for
> using GPIO pins as chip selects. As a starting point, I've browsed the
> driver source trying to identify what changes would be necessary to add
> this support. It seems like the rough idea is,
You may loot at drivers/spi/spi_s3c64xx.c in Grant Likely's tree.
It doesn't put limit on the number of CS and not even on whether
the CS mechanism is simple GPIO toggling(though the callback
type is defined to match gpio_set_value).
For platform side of it, you need to look in to Ben Dooks' tree.
hth
------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re: McSPI questions pertaining to GPIO chip select support
[not found] ` <1264651770-sup-5197@ben-laptop>
2010-01-28 4:15 ` Bill Gatliff
2010-01-28 4:33 ` jassi brar
@ 2011-08-30 10:14 ` Raju Sana
2011-08-30 13:50 ` Ben Gamari
2 siblings, 1 reply; 53+ messages in thread
From: Raju Sana @ 2011-08-30 10:14 UTC (permalink / raw)
To: Ben Gamari
Cc: David Brownell, Michael Hennerich, beagleboard, Eric Miao,
spi-devel-general, linux-omap
Hi Ben,
Could you please post your patch as I am also working the similar design.
I need to modify the existing McSPI driver to support 3 codec chips.
Thanks.
Venkat Raju.
On Thu, Jan 28, 2010 at 9:40 AM, Ben Gamari <bgamari.foss-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> Hey all!
>
> Recently I've been thinking about adding support to the McSPI driver for
> using GPIO pins as chip selects. As a starting point, I've browsed the
> driver source trying to identify what changes would be necessary to add
> this support. It seems like the rough idea is,
>
> a) add a cs_gpio field to the device struct (omap2_mcspi)
> b) modify omap2_mcspi_force_cs() to use cs_gpio instead of the
> CHxCONF[FORCE] bit if cs_gpio is valid
>
> Unfortunately, I'm having a bit of difficulty seeing how the existing
> configuration works. In master mode, it seems that the controller is
> configured in single forced channel mode (MCSPI_MODULECTRL_SINGLE). As
> far as I can tell, this means that the driver is responsible for
> managing the chip selects through the MCSPI_CHxCONF[FORCE] bits. It
> seems that this is ideal as little will need to be changed to
> incorporate GPIO CS support.
>
> Nevertheless, the timing of the various operations isn't making sense to
> me. As far as I understand it, the callgraph is as follows,
>
>
> omap2_mcspi_work():
> loop over messages
> omap2_mcspi_set_enable(1)
> loop over transfers:
> configure bus parameters
> if (!cs_active) cs = 1
> if (dma):
> omap2_mcspi_txrx_dma()
> else:
> omap2_mcspi_txrx_pio()
> if (cs_change) cs = 0
> end loop
>
> if (cs_active) cs = 0
> omap2_mcspi_set_enable(0)
> end loop
>
>
> It seems that omap2_mcspi_set_enable() is called to enable the channel
> (MCSPI_CHCTRLx[EN] is set) before force_cs() is called. If I'm
> interpreting the hardware documentation correctly, the enable bit (among
> other things) starts the SPI clock, meaning that the chip will begin
> clocking out zeros to the device before CS is brought high.
> Furthermore, even after CS is brought high, it seems there could be a
> fair amount of time before the chip begins actually clocking out valid
> data.
>
> As I am writing this, it now occurs to me that perhaps the chip doesn't
> start SPI_CLK until it has data to send. It seems that if this were the
> case my concerns would be resolved. However, it is not at all clear that
> this is the case from the documentation. When exactly does the
> controller start the bus clock? Is this stated explicitly anywhere in
> the documentation?
>
> Any input you could offer would be greatly appreciated.
> Thanks for your time.
>
> - Ben
>
>
> P.S. The more and more I think about it, it seems like my hypothesis is
> the only logical behavior. It would be great if someone could confirm my
> suspicions, however. It really seems like this should be in the
> documentation either way.
>
> P.P.S. I apologize if this is something someone familiar with SPI should
> just know. My knowledge is a little spotty on this sort of thing.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
------------------------------------------------------------------------------
Special Offer -- Download ArcSight Logger for FREE!
Finally, a world-class log management solution at an even better
price-free! And you'll get a free "Love Thy Logs" t-shirt when you
download Logger. Secure your free ArcSight Logger TODAY!
http://p.sf.net/sfu/arcsisghtdev2dev
^ permalink raw reply [flat|nested] 53+ messages in thread
* GPIO chip select support
2011-08-30 10:14 ` McSPI questions pertaining to GPIO chip select support Raju Sana
@ 2011-08-30 13:50 ` Ben Gamari
2011-08-30 13:50 ` [PATCH] mcspi: Add support for GPIO chip select lines Ben Gamari
2011-08-30 13:52 ` [PATCH] beagledaq: Hack in cs_gpios Ben Gamari
0 siblings, 2 replies; 53+ messages in thread
From: Ben Gamari @ 2011-08-30 13:50 UTC (permalink / raw)
To: Raju Sana; +Cc: beagleboard, linux-omap, spi-devel-general
Thanks for the poke. I've been meaning to send this set out again anyways.
This is the patch I am currently using (on top of v3.0). Conceptually it's
quite similar to the first patches I sent out but some implementation details
were slightly reworked to account for the generalization of the McSPI driver to
other silicon.
I would say that the patch is close to mergable save the fact that there is
currently no clean way to set up GPIO CS pins from a board file. I'll send the
horrible hack I currently use shortly. If anyone has any ideas on how this
might be done cleanly please let me know. It's sad that the mere lack of a
configuration interface is the reason this isn't upstream.
Cheers,
- Ben
^ permalink raw reply [flat|nested] 53+ messages in thread
* [PATCH] mcspi: Add support for GPIO chip select lines
2011-08-30 13:50 ` Ben Gamari
@ 2011-08-30 13:50 ` Ben Gamari
2011-08-30 13:52 ` [PATCH] beagledaq: Hack in cs_gpios Ben Gamari
1 sibling, 0 replies; 53+ messages in thread
From: Ben Gamari @ 2011-08-30 13:50 UTC (permalink / raw)
To: Raju Sana; +Cc: beagleboard, linux-omap, spi-devel-general, Ben Gamari
Many applications require more chip select lines than the board or
processor allow. Introduce a mechanism to allow use of GPIO pins as
chip select lines with the McSPI controller. To use this
tionality,
one simply provides a table mapping CS line numbers to GPIO numbers
omap2_mcspi_platform_config.cs_gpios.
Signed-off-by: Ben Gamari <bgamari.foss@gmail.com>
---
arch/arm/plat-omap/include/plat/mcspi.h | 1 +
drivers/spi/omap2_mcspi.c | 19 +++++++++++++++++--
2 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/arch/arm/plat-omap/include/plat/mcspi.h b/arch/arm/plat-omap/include/plat/mcspi.h
index 3d51b18..c5670f2 100644
--- a/arch/arm/plat-omap/include/plat/mcspi.h
+++ b/arch/arm/plat-omap/include/plat/mcspi.h
@@ -10,6 +10,7 @@
struct omap2_mcspi_platform_config {
unsigned short num_cs;
unsigned int regs_offset;
+ int *cs_gpios;
};
struct omap2_mcspi_dev_attr {
diff --git a/drivers/spi/omap2_mcspi.c b/drivers/spi/omap2_mcspi.c
index f41c906..20dec5d 100644
--- a/drivers/spi/omap2_mcspi.c
+++ b/drivers/spi/omap2_mcspi.c
@@ -36,6 +36,7 @@
#include <linux/pm_runtime.h>
#include <linux/spi/spi.h>
+#include <linux/gpio.h>
#include <plat/dma.h>
#include <plat/clock.h>
@@ -121,6 +122,7 @@ struct omap2_mcspi {
/* SPI1 has 4 channels, while SPI2 has 2 */
struct omap2_mcspi_dma *dma_channels;
struct device *dev;
+ int *cs_gpios;
};
struct omap2_mcspi_cs {
@@ -227,7 +229,11 @@ static void omap2_mcspi_set_enable(const struct spi_device *spi, int enable)
static void omap2_mcspi_force_cs(struct spi_device *spi, int cs_active)
{
u32 l;
+ struct omap2_mcspi* mcspi = spi_master_get_devdata(spi->master);
+ if (mcspi->cs_gpios)
+ gpio_set_value(mcspi->cs_gpios[spi->chip_select], cs_active);
+ // TXS times out unless we force the CHCONF reg as well
l = mcspi_cached_chconf0(spi);
MOD_REG_BIT(l, OMAP2_MCSPI_CHCONF_FORCE, cs_active);
mcspi_write_chconf0(spi, l);
@@ -1088,6 +1094,8 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
struct omap2_mcspi *mcspi;
struct resource *r;
int status = 0, i;
+ struct omap2_mcspi_platform_config* pconfig = pdev->dev.platform_data;
+ int num_dma;
master = spi_alloc_master(&pdev->dev, sizeof *mcspi);
if (master == NULL) {
@@ -1110,6 +1118,13 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
mcspi = spi_master_get_devdata(master);
mcspi->master = master;
+ if (pconfig && pconfig->cs_gpios) {
+ mcspi->cs_gpios = pconfig->cs_gpios;
+ num_dma = 1;
+ } else {
+ mcspi->cs_gpios = NULL;
+ num_dma = master->num_chipselect;
+ }
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (r == NULL) {
@@ -1139,14 +1154,14 @@ static int __init omap2_mcspi_probe(struct platform_device *pdev)
INIT_LIST_HEAD(&mcspi->msg_queue);
INIT_LIST_HEAD(&omap2_mcspi_ctx[master->bus_num - 1].cs);
- mcspi->dma_channels = kcalloc(master->num_chipselect,
+ mcspi->dma_channels = kcalloc(num_dma,
sizeof(struct omap2_mcspi_dma),
GFP_KERNEL);
if (mcspi->dma_channels == NULL)
goto err2;
- for (i = 0; i < master->num_chipselect; i++) {
+ for (i = 0; i < num_dma; i++) {
char dma_ch_name[14];
struct resource *dma_res;
--
1.7.4.1
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [PATCH] beagledaq: Hack in cs_gpios
2011-08-30 13:50 ` Ben Gamari
2011-08-30 13:50 ` [PATCH] mcspi: Add support for GPIO chip select lines Ben Gamari
@ 2011-08-30 13:52 ` Ben Gamari
[not found] ` <1314712343-27367-1-git-send-email-bgamari.foss-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
1 sibling, 1 reply; 53+ messages in thread
From: Ben Gamari @ 2011-08-30 13:52 UTC (permalink / raw)
To: Raju Sana; +Cc: beagleboard, linux-omap, spi-devel-general, Ben Gamari
---
arch/arm/mach-omap2/board-omap3beagle.c | 4 ++--
arch/arm/mach-omap2/devices.c | 15 +++++++++++++++
2 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
index 67999da..481c1a9 100644
--- a/arch/arm/mach-omap2/board-omap3beagle.c
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
@@ -661,8 +661,8 @@ static struct spi_board_info beagledaq_mcspi_board_info[] = {
},
};
-static int mcspi3_cs_gpios[4];
-static int mcspi4_cs_gpios[4];
+int mcspi3_cs_gpios[4];
+int mcspi4_cs_gpios[4];
static void __init beagledaq_init(void)
{
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c
index 5b8ca68..6808251 100644
--- a/arch/arm/mach-omap2/devices.c
+++ b/arch/arm/mach-omap2/devices.c
@@ -341,6 +341,9 @@ struct omap_device_pm_latency omap_mcspi_latency[] = {
},
};
+extern int mcspi3_cs_gpios[4];
+extern int mcspi4_cs_gpios[4];
+
static int omap_mcspi_init(struct omap_hwmod *oh, void *unused)
{
struct omap_device *od;
@@ -369,6 +372,18 @@ static int omap_mcspi_init(struct omap_hwmod *oh, void *unused)
return -EINVAL;
}
+ /* HACK: Not enough time to figure out how to export cs_gpios from
+ * board file to driver correctly */
+ if (spi_num == 2) {
+ // Setup McSPI3 cs_gpios
+ pdata->num_cs = 4;
+ pdata->cs_gpios = mcspi3_cs_gpios;
+ } else if (spi_num == 3) {
+ // Setup McSPI4 cs_gpios
+ pdata->num_cs = 4;
+ pdata->cs_gpios = mcspi4_cs_gpios;
+ }
+
spi_num++;
od = omap_device_build(name, spi_num, oh, pdata,
sizeof(*pdata), omap_mcspi_latency,
--
1.7.4.1
^ permalink raw reply related [flat|nested] 53+ messages in thread
* [PATCH v3 4/8] x86: stop exporting msr-index.h to userland
2017-01-13 10:46 ` [PATCH v3 0/8] " Nicolas Dichtel
@ 2017-01-13 10:46 Nicolas Dichtel
2017-01-09 11:33 ` [PATCH v2 0/7] uapi: export all headers under uapi directories Arnd Bergmann
0 siblings, 1 reply; 53+ messages in thread
From: Nicolas Dichtel @ 2017-01-13 10:46 UTC (permalink / raw)
To: arnd
Cc: mmarek, linux-kbuild, linux-doc, linux-kernel, linux-alpha,
linux-snps-arc, linux-arm-kernel, adi-buildroot-devel,
linux-c6x-dev, linux-cris-kernel, uclinux-h8-devel,
linux-hexagon, linux-ia64, linux-m68k, linux-metag, linux-mips,
linux-am33-list, nios2-dev, openrisc, linux-parisc, linuxppc-dev,
linux-s390, linux-sh, sparclinux, linux-xtensa, linux-arch
Suggested-by: Borislav Petkov <bp@alien8.de>
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
---
arch/x86/include/uapi/asm/Kbuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/x86/include/uapi/asm/Kbuild b/arch/x86/include/uapi/asm/Kbuild
index 3dec769cadf7..1c532b3f18ea 100644
--- a/arch/x86/include/uapi/asm/Kbuild
+++ b/arch/x86/include/uapi/asm/Kbuild
@@ -27,7 +27,6 @@ header-y += ldt.h
header-y += mce.h
header-y += mman.h
header-y += msgbuf.h
-header-y += msr-index.h
header-y += msr.h
header-y += mtrr.h
header-y += param.h
--
2.8.1
^ permalink raw reply related [flat|nested] 53+ messages in thread
* Re: [PATCH v2 0/7] uapi: export all headers under uapi directories
@ 2017-01-09 11:33 ` Arnd Bergmann
2017-01-13 10:46 ` [PATCH v3 0/8] " Nicolas Dichtel
0 siblings, 1 reply; 53+ messages in thread
From: Arnd Bergmann @ 2017-01-09 11:33 UTC (permalink / raw)
To: linuxppc-dev, linux-kbuild
Cc: linux-mips, alsa-devel, linux-ia64, linux-doc, airlied,
linux-fbdev, dri-devel, linux-mtd, sparclinux, linux-arch,
linux-s390, linux-am33-list, linux-c6x-dev, linux-rdma,
linux-hexagon, linux-sh, coreteam, fcoe-devel, xen-devel,
linux-snps-arc, linux-media, uclinux-h8-devel,
adi-buildroot-devel, linux-raid, linux-m68k, openrisc,
Nicolas Dichtel, linux-metag, linux-arm-kernel, li
On Friday, January 6, 2017 10:43:52 AM CET Nicolas Dichtel wrote:
> Here is the v2 of this series. The first 5 patches are just cleanup: some
> exported headers were still under a non-uapi directory.
Since this is meant as a cleanup, I commented on this to point out a cleaner
way to do the same.
> The patch 6 was spotted by code review: there is no in-tree user of this
> functionality.
> The last patch remove the use of header-y. Now all files under an uapi
> directory are exported.
Very nice!
> asm is a bit special, most of architectures export asm/<arch>/include/uapi/asm
> only, but there is two exceptions:
> - cris which exports arch/cris/include/uapi/arch-v[10|32];
This is interesting, though not your problem. Maybe someone who understands
cris better can comment on this: How is the decision made about which of
the arch/user.h headers gets used? I couldn't find that in the sources,
but it appears to be based on kernel compile-time settings, which is
wrong for user space header files that should be independent of the kernel
config.
> - tile which exports arch/tile/include/uapi/arch.
> Because I don't know if the output of 'make headers_install_all' can be changed,
> I introduce subdir-y in Kbuild file. The headers_install_all target copies all
> asm/<arch>/include/uapi/asm to usr/include/asm-<arch> but
> arch/cris/include/uapi/arch-v[10|32] and arch/tile/include/uapi/arch are not
> prefixed (they are put asis in usr/include/). If it's acceptable to modify the
> output of 'make headers_install_all' to export asm headers in
> usr/include/asm-<arch>/asm, then I could remove this new subdir-y and exports
> everything under arch/<arch>/include/uapi/.
I don't know if anyone still uses "make headers_install_all", I suspect
distros these days all use "make headers_install", so it probably
doesn't matter much.
In case of cris, it should be easy enough to move all the contents of the
uapi/arch-*/*.h headers into the respective uapi/asm/*.h headers, they
only seem to be referenced from there.
For tile, I suspect that would not work as the arch/*.h headers are
apparently defined as interfaces for both user space and kernel.
> Note also that exported files for asm are a mix of files listed by:
> - include/uapi/asm-generic/Kbuild.asm;
> - arch/x86/include/uapi/asm/Kbuild;
> - arch/x86/include/asm/Kbuild.
> This complicates a lot the processing (arch/x86/include/asm/Kbuild is also
> used by scripts/Makefile.asm-generic).
>
> This series has been tested with a 'make headers_install' on x86 and a
> 'make headers_install_all'. I've checked the result of both commands.
>
> This patch is built against linus tree. I don't know if it should be
> made against antoher tree.
The series should probably get merged through the kbuild tree, but testing
it on mainline is fine here.
Arnd
^ permalink raw reply [flat|nested] 53+ messages in thread
* [PATCH v3 0/8] uapi: export all headers under uapi directories
2017-01-09 11:33 ` [PATCH v2 0/7] uapi: export all headers under uapi directories Arnd Bergmann
@ 2017-01-13 10:46 ` Nicolas Dichtel
2017-01-13 15:43 ` (no subject) David Howells
0 siblings, 1 reply; 53+ messages in thread
From: Nicolas Dichtel @ 2017-01-13 10:46 UTC (permalink / raw)
To: arnd
Cc: linux-mips, alsa-devel, linux-ia64, linux-doc, airlied,
daniel.vetter, linux-fbdev, dri-devel, linux-mtd, sparclinux,
linux-arch, linux-s390, linux-am33-list, linux-c6x-dev,
linux-rdma, linux-hexagon, linux-sh, linux, hch, coreteam,
msalter, fcoe-devel, xen-devel, linux-snps-arc, linux-media,
uclinux-h8-devel, linux-xtensa, linux-kbuild,
adi-buildroot-devel, linux-raid, linux-m68k
Here is the v3 of this series. The first 5 patches are just cleanup: some
exported headers were still under a non-uapi directory or (x86 case) were
wrongly exported.
The patch 6 was spotted by code review: there is no in-tree user of this
functionality.
Patches 7 and 8 remove the need to list explicitly headers. Now all files
under an uapi directory are exported.
This series has been tested with a 'make headers_install' on x86 and a
'make headers_install_all'. I've checked the result of both commands.
This patch is built against linus tree. If I must rebase it against the kbuild
tree, just tell me ;-)
v2 -> v3:
- patch #1: remove arch/arm/include/asm/types.h
- patch #2: remove arch/h8300/include/asm/bitsperlong.h
- patch #3: remove arch/nios2/include/uapi/asm/setup.h
- patch #4: don't export msr-index.h
- patch #5: fix a typo: s/unput-files3-name/input-files3-name
- patch #6: no change
- patch #7: fix include/uapi/asm-generic/Kbuild.asm by introducing mandatory-y
- add patch #8
v1 -> v2:
- add patch #1 to #6
- patch #7: remove use of header-y
Comments are welcomed,
Nicolas
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
2017-01-13 10:46 ` [PATCH v3 0/8] " Nicolas Dichtel
@ 2017-01-13 15:43 ` David Howells
0 siblings, 0 replies; 53+ messages in thread
From: David Howells @ 2017-01-13 15:43 UTC (permalink / raw)
To: Nicolas Dichtel
Cc: dhowells, arnd, linux-kbuild, linux-doc, linux-kernel,
linux-alpha, linux-snps-arc, linux-arm-kernel,
adi-buildroot-devel, linux-c6x-dev, linux-cris-kernel,
uclinux-h8-devel, linux-hexagon, linux-ia64, linux-m68k,
linux-metag, linux-mips, linux-am33-list, nios2-dev, openrisc,
linux-parisc, linuxppc-dev, linux-s390, linux-sh, sparclinux,
linux-xtensa, linux-arc
> -header-y += msr-index.h
I see it on my desktop as /usr/include/asm/msr-index.h and it's been there at
least four years - and as such it's part of the UAPI. I don't think you can
remove it unless you can guarantee there are no userspace users.
David
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2009-12-13 20:22 Darrell
0 siblings, 0 replies; 53+ messages in thread
From: Darrell @ 2009-12-13 20:22 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #2: leadsman.jpg --]
[-- Type: image/jpeg, Size: 24442 bytes --]
[-- Attachment #3: Type: text/plain, Size: 191 bytes --]
------------------------------------------------------------------------------
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
[-- Attachment #4: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2008-11-18 7:52 Bryan Wu
0 siblings, 0 replies; 53+ messages in thread
From: Bryan Wu @ 2008-11-18 7:52 UTC (permalink / raw)
To: dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f,
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-11-01 20:27 张先生
0 siblings, 0 replies; 53+ messages in thread
From: 张先生 @ 2007-11-01 20:27 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-09 20:03 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-09 20:03 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-09 19:28 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-09 19:28 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-09 17:05 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-09 17:05 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-09 15:29 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-09 15:29 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-08 18:35 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-08 18:35 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-08 18:29 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-08 18:29 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-08 18:16 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-08 18:16 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-08 17:06 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-08 17:06 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-06 23:59 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-06 23:59 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-06 19:30 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-06 19:30 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-06 15:33 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-06 15:33 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-06 10:34 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-06 10:34 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-06 10:03 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-06 10:03 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-06 9:53 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-06 9:53 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 314 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-02 15:49 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-02 15:49 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 228 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-02 14:33 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-02 14:33 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 228 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-10-02 5:55 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-10-02 5:55 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 228 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-09-22 14:05 蔡先生
0 siblings, 0 replies; 53+ messages in thread
From: 蔡先生 @ 2007-09-22 14:05 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]
宝恒实业有限公司
尊敬的贵公司(厂)财务部:
您好!
本公司身受多家包税公司委托代开各种税票,规范做帐,价格优惠,
为企业争取最大的经济利益。
发票种类分别为:增值税专用发票、海关增值税专用发票、普通国税
(服务业、运输业、建筑安装业、广告业、加工业、销售业等等。)
如贵公司(厂)需要本公司代开发票请来电联系.
致
礼
请来电联系;0755-21054532
13751120762 蔡先生
LINBO762-guc8Kt/Hbbw@public.gmane.org
[-- Attachment #2: Type: text/plain, Size: 228 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
[-- Attachment #3: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
* Re: (no subject)
@ 2007-07-27 11:17 Stacy Lilly
0 siblings, 0 replies; 53+ messages in thread
From: Stacy Lilly @ 2007-07-27 11:17 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Try Penis Enlarge Patch you will be happy with the results.
http://www.libiorn.net/
Dont forget that shipping is free for on-line orders of Penis Enlarge Patch.
------------------------
Storks away. But when the bytheraging, firesurrounded Nest ITSELF caught
He went away blindly into the darkest part of the cellar. It was very black there, but his eyes stared wide before him. It was very cold, but drops of sweat stood on his forehead as if he were in the hayfield. He was alone, but his lips moved from time to time, and once he called out in some loud, stifled exclamation which resounded hollowly in the vault-like place. He was there a long time.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
^ permalink raw reply [flat|nested] 53+ messages in thread
* (no subject)
@ 2007-07-21 8:25 Joachim B.Byrne
0 siblings, 0 replies; 53+ messages in thread
From: Joachim B.Byrne @ 2007-07-21 8:25 UTC (permalink / raw)
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #2: paid.pdf --]
[-- Type: application/pdf, Size: 18730 bytes --]
[-- Attachment #3: Type: text/plain, Size: 228 bytes --]
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
[-- Attachment #4: Type: text/plain, Size: 210 bytes --]
_______________________________________________
spi-devel-general mailing list
spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/spi-devel-general
^ permalink raw reply [flat|nested] 53+ messages in thread
end of thread, other threads:[~2017-01-13 15:43 UTC | newest]
Thread overview: 53+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-20 19:47 (no subject) Ben Gamari
2010-01-21 0:04 ` Ben Dooks
2010-01-21 0:04 ` (no subject) Ben Dooks
2010-01-21 0:04 ` Ben Dooks
2010-01-22 15:53 ` Re: Ben Gamari
2010-01-28 4:10 ` McSPI questions pertaining to GPIO chip select support Ben Gamari
[not found] ` <1264651770-sup-5197@ben-laptop>
2010-01-28 4:15 ` Bill Gatliff
2010-01-28 4:25 ` Ben Gamari
2010-01-28 4:27 ` Bill Gatliff
2010-01-28 4:33 ` jassi brar
[not found] ` <1b68c6791001272033q60dd31dbif4de285cd9bac83d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-01-29 0:32 ` Ben Gamari
2010-01-29 1:09 ` jassi brar
[not found] ` <1b68c6791001281709l7d11da30lee486632e85b99cb-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-01-29 1:58 ` Ben Gamari
2010-12-21 17:56 ` [RFC PATCH] GPIO chip select support for McSPI Ben Gamari
2010-12-21 17:56 ` [PATCH] mcspi: Add support for GPIO chip select lines Ben Gamari
[not found] ` <1292954195-20204-2-git-send-email-bgamari.foss@gmail.com>
2010-12-23 19:59 ` Tony Lindgren
2010-12-23 21:38 ` Grant Likely
2010-12-23 23:09 ` Ben Gamari
2010-12-24 0:37 ` Grant Likely
2010-12-24 2:27 ` Ben Gamari
2010-12-24 3:28 ` Grant Likely
2010-12-24 6:05 ` Ben Gamari
2011-02-12 8:33 ` Grant Likely
2011-02-13 22:07 ` Ben Gamari
2011-08-30 10:14 ` McSPI questions pertaining to GPIO chip select support Raju Sana
2011-08-30 13:50 ` Ben Gamari
2011-08-30 13:50 ` [PATCH] mcspi: Add support for GPIO chip select lines Ben Gamari
2011-08-30 13:52 ` [PATCH] beagledaq: Hack in cs_gpios Ben Gamari
[not found] ` <1314712343-27367-1-git-send-email-bgamari.foss-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-09-05 12:42 ` Raju Sana
-- strict thread matches above, loose matches on Subject: below --
2017-01-13 10:46 [PATCH v3 4/8] x86: stop exporting msr-index.h to userland Nicolas Dichtel
2017-01-09 11:33 ` [PATCH v2 0/7] uapi: export all headers under uapi directories Arnd Bergmann
2017-01-13 10:46 ` [PATCH v3 0/8] " Nicolas Dichtel
2017-01-13 15:43 ` (no subject) David Howells
2009-12-13 20:22 Darrell
2008-11-18 7:52 Bryan Wu
2007-11-01 20:27 张先生
2007-10-09 20:03 蔡先生
2007-10-09 19:28 蔡先生
2007-10-09 17:05 蔡先生
2007-10-09 15:29 蔡先生
2007-10-08 18:35 蔡先生
2007-10-08 18:29 蔡先生
2007-10-08 18:16 蔡先生
2007-10-08 17:06 蔡先生
2007-10-06 23:59 蔡先生
2007-10-06 19:30 蔡先生
2007-10-06 15:33 蔡先生
2007-10-06 10:34 蔡先生
2007-10-06 10:03 蔡先生
2007-10-06 9:53 蔡先生
2007-10-02 15:49 蔡先生
2007-10-02 14:33 蔡先生
2007-10-02 5:55 蔡先生
2007-09-22 14:05 蔡先生
2007-07-27 11:17 Stacy Lilly
2007-07-21 8:25 Joachim B.Byrne
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).