* [parisc-linux] Dump: need disk layout function.
@ 2002-03-26 7:09 Bruno Vidal
2002-03-26 7:21 ` Matthew Wilcox
0 siblings, 1 reply; 5+ messages in thread
From: Bruno Vidal @ 2002-03-26 7:09 UTC (permalink / raw)
To: parisc-linux@lists.parisc-linux.org
[-- Attachment #1: Type: text/plain, Size: 508 bytes --]
Hi all.
I'm looking for function that manage disk layout. In fact I'm looking
for functions that are able to return start block and end block of
a partition. Do you know if it exists (I'm sure that it exists), and where it is ?
By the way, I'm looking for a function (or structure) that return the HPA
and the SPA of a disk (but for this I find nothing, except for the boot
disk in page0).
Thanks.
--
Vidal Bruno, (770-4271)
SSD-HA Team, HP-UX & LINUX Support
bruno_vidal@admin.france.hp.com
[-- Attachment #2: Card for Bruno Vidal --]
[-- Type: text/x-vcard, Size: 386 bytes --]
begin:vcard
n:Bruno;VIDAL
tel;fax:01-69-82-60-14
tel;work:01-69-29-42-71
x-mozilla-html:TRUE
url:www.france.hp.com
org:Solution Center
version:2.1
email;internet:bruno_vidal@hp.com
title:Expert Logiciel Environnement Haute Disponibilité
adr;quoted-printable:;;HP France=0D=0A;Z.A de Courtaboeuf;1 Av. du Canada;91947 Les Ulis cedex;France
x-mozilla-cpt:;26208
fn:VIDAL Bruno
end:vcard
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [parisc-linux] Dump: need disk layout function.
2002-03-26 7:09 [parisc-linux] Dump: need disk layout function Bruno Vidal
@ 2002-03-26 7:21 ` Matthew Wilcox
2002-03-26 11:46 ` [parisc-linux] does audio works on 712,715 and 735? Jean-Louis Abat
2002-03-28 17:00 ` [parisc-linux] Dump: need disk layout function Grant Grundler
0 siblings, 2 replies; 5+ messages in thread
From: Matthew Wilcox @ 2002-03-26 7:21 UTC (permalink / raw)
To: Bruno Vidal; +Cc: parisc-linux@lists.parisc-linux.org
On Tue, Mar 26, 2002 at 08:09:40AM +0100, Bruno Vidal wrote:
> I'm looking for function that manage disk layout. In fact I'm looking
> for functions that are able to return start block and end block of
> a partition. Do you know if it exists (I'm sure that it exists), and where it is ?
> By the way, I'm looking for a function (or structure) that return the HPA
> and the SPA of a disk (but for this I find nothing, except for the boot
> disk in page0).
Tried fs/partitions/msdos.c?
How can a disc have HPA and SPA? Are you trying to find the HPA/SPA of
the disc's controller?
--
Revolutions do not require corporate support.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [parisc-linux] does audio works on 712,715 and 735?
2002-03-26 7:21 ` Matthew Wilcox
@ 2002-03-26 11:46 ` Jean-Louis Abat
2002-03-26 12:06 ` Tilo Jandt
2002-03-28 17:00 ` [parisc-linux] Dump: need disk layout function Grant Grundler
1 sibling, 1 reply; 5+ messages in thread
From: Jean-Louis Abat @ 2002-03-26 11:46 UTC (permalink / raw)
To: parisc-linux
hi,
I ear that audio works with 735!
Does it work with 712 and 715??
I tried a few month ago on 712, but it didn't work... I didn't upgrade since
that time, from which kernel/packages versions could it work?
best regards
jl.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [parisc-linux] does audio works on 712,715 and 735?
2002-03-26 11:46 ` [parisc-linux] does audio works on 712,715 and 735? Jean-Louis Abat
@ 2002-03-26 12:06 ` Tilo Jandt
0 siblings, 0 replies; 5+ messages in thread
From: Tilo Jandt @ 2002-03-26 12:06 UTC (permalink / raw)
To: Jean-Louis Abat, parisc-linux
hi,
>Does it work with 712 and 715??
With 712 it works fine.
I've got a 712/60 and it works fine while playing MP3.
>I tried a few month ago on 712, but it didn't work... I didn't upgrade=
since
>that time, from which kernel/packages versions could it work?
You need the harmony driver.
I think all Kernel > 2.4.17 do have this driver.
cya,
Tilo
|[ Tilo Jandt, K=F6rnerstra=DFe 8, D-09306 Rochlitz ]|
|[ mailto:tilo@jandt-online.net ] [ ICQ: 73832493 ]|
|[ Phone: +49 179 5333 255 ] [ Fax: +49 3737 771478 ]|
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [parisc-linux] Dump: need disk layout function.
2002-03-26 7:21 ` Matthew Wilcox
2002-03-26 11:46 ` [parisc-linux] does audio works on 712,715 and 735? Jean-Louis Abat
@ 2002-03-28 17:00 ` Grant Grundler
1 sibling, 0 replies; 5+ messages in thread
From: Grant Grundler @ 2002-03-28 17:00 UTC (permalink / raw)
To: Matthew Wilcox; +Cc: parisc-linux@lists.parisc-linux.org
Matthew Wilcox wrote:
> How can a disc have HPA and SPA? Are you trying to find the HPA/SPA of
> the disc's controller?
I thought the boot and dump devices have a faked HPA for IODC.
The code in palo/ipl/pdc_misc.c looks like it:
int
pdc_iodc_bootin(unsigned devaddr, char *memaddr, unsigned size)
{
int r;
r = firmware_call(PAGE0->mem_boot.iodc_io,
PAGE0->mem_boot.hpa, ENTRY_IO_BOOTIN,
PAGE0->mem_boot.spa, PAGE0->mem_boot.dp.layers,
pdc_result, devaddr, memaddr, size, size);
....
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-03-28 17:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-26 7:09 [parisc-linux] Dump: need disk layout function Bruno Vidal
2002-03-26 7:21 ` Matthew Wilcox
2002-03-26 11:46 ` [parisc-linux] does audio works on 712,715 and 735? Jean-Louis Abat
2002-03-26 12:06 ` Tilo Jandt
2002-03-28 17:00 ` [parisc-linux] Dump: need disk layout function Grant Grundler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox