Greg KH | 2 May 2004 08:46
Gravatar

Re: [PATCH 2.6.6-rc3] add class support to drivers/char/tipar.c

On Wed, Apr 28, 2004 at 03:09:26PM -0700, Hanna Linder wrote:
> 
> This patch adds class support to the Texas Instruments graphing calculators
> with a parallel link cable.
> 
> I have verified it compiles. If someone has the hardware please verify it works.

Applied, thanks.

greg k-h
Florian Hackenberger | 4 May 2004 12:12
Picon

Re: How to Set Pins permanently

Joe Lang wrote:

>My experience with the parallel port involves programming the interface
> directly.  That is, I use the outb() function to send data to the parallel
> port interface.
>
>Before using outb() you must call ioperm().
>  
>
Thank you, but anyway I would like to use the parport driver framework.
Maybe someone else could explain how to accomplish my task with parport?

Regards,
    Florian

--

-- 
Florian Hackenberger
student  <at> 
University of Technology
Graz, Austria
flohack <at> sbox.tugraz.at
Picon

[Q] Maintenance in 2.6

Good eDay !

I can not understand some points about linux-parport.

First. Is there any connection with <linux-parport <at> lists.infradead.org> and 2.6 ?
IMHO no: 
       1) http://bugme.osdl.org/show_bug.cgi?id=2540
       2) grep -e parport ChangeLog-2.6.6.txt ...
       3) olecom <at> gluon:/usr/src/linux-2.6.5$ grep MAINTAINERS -e linux-parport <at> lists.infradead.org
          olecom <at> gluon:/usr/src/linux-2.6.5$ grep MAINTAINERS -e linux-parport                    
          L:      linux-parport <at> torque.net
          L:      linux-parport <at> torque.net
          olecom <at> gluon:/usr/src/linux-2.6.5$

Second. Patches to kernel are applyed from `man from steet` ;-), or not only MAINTAINERS ?

Third. Maintenance is stopped or udelayed() ;-) ?

Please clear it for me, if there's time and/or will.

Thanks.
Tim Waugh | 15 May 2004 12:09
Picon
Favicon
Gravatar

Re: [Q] Maintenance in 2.6

On Sat, May 15, 2004 at 01:58:21PM +0400, "Good Oleg"  wrote:

> First. Is there any connection with <linux-parport <at> lists.infradead.org> and 2.6 ?
> IMHO no: 
>        1) http://bugme.osdl.org/show_bug.cgi?id=2540
>        2) grep -e parport ChangeLog-2.6.6.txt ...
>        3) olecom <at> gluon:/usr/src/linux-2.6.5$ grep MAINTAINERS -e linux-parport <at> lists.infradead.org
>           olecom <at> gluon:/usr/src/linux-2.6.5$ grep MAINTAINERS -e linux-parport                    
>           L:      linux-parport <at> torque.net
>           L:      linux-parport <at> torque.net
>           olecom <at> gluon:/usr/src/linux-2.6.5$

Oops, my fault.

> Second. Patches to kernel are applyed from `man from steet` ;-), or not only MAINTAINERS ?
> 
> Third. Maintenance is stopped or udelayed() ;-) ?

I'be been swamped with other stuff for.. actually quite a long time.
I'm afraid I haven't been doing anything but collect patches as far as
parport is concerned. :-(

Perhaps it's time to ask: does anyone else want to step forward and
maintain the kernel parport/paride code?

Tim.
*/
_______________________________________________
(Continue reading)

Florian Hackenberger | 17 May 2004 21:34
Picon

How to Set Pins permanently

Hello!

I am asking this again, because I have not recieved any useful answer:

Can anybody tell me how to set pins on the parallel port permanently.
When using:
parport_write_data(port, 7);
Pins 2,3,4 are on for  about 45seconds. But after this period, they are
off again.

Regards,
    Florian

--

-- 
Florian Hackenberger
student  <at> 
University of Technology
Graz, Austria
flohack <at> sbox.tugraz.at
www.hackenberger.at
Tim Waugh | 18 May 2004 10:51
Picon
Favicon
Gravatar

Re: How to Set Pins permanently

On Mon, May 17, 2004 at 07:34:32PM +0000, Florian Hackenberger wrote:

> Hello!
> 
> I am asking this again, because I have not recieved any useful answer:
> 
> Can anybody tell me how to set pins on the parallel port permanently.
> When using:
> parport_write_data(port, 7);
> Pins 2,3,4 are on for  about 45seconds. But after this period, they are
> off again.

Something else is changing them.

Do you have the port held for exclusive use (with O_EXCL)?

Tim.
*/
_______________________________________________
Linux-parport mailing list
Linux-parport <at> lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-parport
Florian Hackenberger | 18 May 2004 22:10
Picon

Re: How to Set Pins permanently

Tim Waugh wrote:

>Something else is changing them.
>  
>
That could be true.

>Do you have the port held for exclusive use (with O_EXCL)?
>  
>
Which call takes it as a parameter?

Thanks for your help!

Regards,
    Florian

--

-- 
Florian Hackenberger
student  <at> 
University of Technology
Graz, Austria
flohack <at> sbox.tugraz.at
www.hackenberger.at
Tim Waugh | 18 May 2004 20:13
Picon
Favicon
Gravatar

Re: How to Set Pins permanently

On Tue, May 18, 2004 at 08:10:58PM +0000, Florian Hackenberger wrote:

> Tim Waugh wrote:
> 
> >Something else is changing them.
> > 
> >
> That could be true.
> 
> >Do you have the port held for exclusive use (with O_EXCL)?
> > 
> >
> Which call takes it as a parameter?

open()

Tim.
*/
_______________________________________________
Linux-parport mailing list
Linux-parport <at> lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-parport
Tim Waugh | 18 May 2004 20:14
Picon
Favicon
Gravatar

Re: How to Set Pins permanently

... or it might be an ioctl.  Hmm, I'm out of touch with this stuff.
I think I was thinking about libieee1284_open.

Tim.
*/
_______________________________________________
Linux-parport mailing list
Linux-parport <at> lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-parport
Florian Hackenberger | 18 May 2004 22:12
Picon

Re: How to Set Pins permanently

Thiago Augusto Miranda Delatorre wrote:

>Does your PC use a SiS chipset?
>  
>
No, chipset from VIA, but thanks anyway!

Regards,
    Florian

--

-- 
Florian Hackenberger
student  <at> 
University of Technology
Graz, Austria
flohack <at> sbox.tugraz.at
www.hackenberger.at

Gmane