Re: axppmic(4): axp313a support

2023-08-01 Thread SASANO Takayoshi
nd 1220-1840mV(20mV*31 step), they want to say dcdc3's 1650-1840mV range is something strange. AXP313A datasheet clearly says that dcdc3 is 0.5-1.2V and 1.22-1.84V. https://github.com/mangopi-sbc/aw-doc/blob/main/pmic/AXP313A_Datasheet_V1.0_cn.pdf So I think no need to add any notes. -- SASANO Takayoshi (JG1UAA)

axppmic(4): axp313a support

2023-07-31 Thread SASANO Takayoshi
21_regdata, axp221_sensdata }, { "x-powers,axp305", "AXP305", axp806_regdata }, + { "x-powers,axp313a", "AXP313A", axp313a_regdata }, { "x-powers,axp803", "AXP803", axp803_regdata, axp803_sensdata }, { "x-powers,axp805", "AXP805", axp806_regdata }, { "x-powers,axp806", "AXP806", axp806_regdata }, -- SASANO Takayoshi (JG1UAA)

Re: axppmic(4): revise (fix axppmic_regdata table, axp305 support)

2023-07-06 Thread SASANO Takayoshi
Hi, changed step -> nsteps, and indent is fixed. Here is new diff. Can I commit this? Regards, -- SASANO Takayoshi (JG1UAA) Index: axppmic.c === RCS file: /cvs/src/sys/dev/fdt/axppmic.c,v retrieving revision 1.16 diff -u

axppmic(4): revise (fix axppmic_regdata table, axp305 support)

2023-07-05 Thread SASANO Takayoshi
I attach the diff, but it is huge due to modifying axppmic_data table. Any comments are welcomed. -- SASANO Takayoshi (JG1UAA) Index: axppmic.c === RCS file: /cvs/src/sys/dev/fdt/axppmic.c,v retrieving revision 1.16 diff -u

re(4): watchdog timeout and temporally disable MSI interrupt

2022-08-07 Thread SASANO Takayoshi
how many people see this timeout of re(4) and that is solved by this MSI tweak. Or, please tell me if there is any other workarounds. Regards, -- SASANO Takayoshi (JG1UAA)

Re: com.c: ASIX AX99100(PCIe UART) probed FIFO depth=0 issue

2022-05-05 Thread SASANO Takayoshi
ping? OpenBSD-7.1 still occur this. -- SASANO Takayoshi (JG1UAA) On Sat, 16 Oct 2021 12:21:57 +0900, SASANO Takayoshi wrote: > > Hi, > > At least 6.9 and 7.0 (and -current) sometimes shows a dmesg that: > > puc1 at pci1 dev 0 function 1 "ASIX AX99100" rev 0x0

usr.sbin/usbdevs: more host controllers

2022-03-25 Thread SASANO Takayoshi
int i; int ncont = 0; - for (i = 0; i < 10; i++) { + for (i = 0; i < 24; i++) { char path[PATH_MAX]; snprintf(path, sizeof(path), "%s%d", USBDEV, i); -- SASANO Takayoshi (JG1UAA)

uchcom(4): fix Rx jammed

2022-01-17 Thread SASANO Takayoshi
e; endpoints->ep_bulkin = bin; + endpoints->ep_bulkin_size = binsize; endpoints->ep_bulkout = bout; return 0; -- SASANO Takayoshi (JG1UAA)

Re: dev/videomode/vesagtf.c: -Werror,-Wunused-but-set-variable fix

2021-12-20 Thread SASANO Takayoshi
Hi, > clang kernels are built with -Wno-unused-but-set-variable > try running 'make config' again oops, I forget 'make config'. Build process works good after that. Thank you! -- SASANO Takayoshi (JG1UAA)

dev/videomode/vesagtf.c: -Werror,-Wunused-but-set-variable fix

2021-12-19 Thread SASANO Takayoshi
RATE] = 1 / [H PERIOD] / [TOTAL V LINES] * 100 @@ -442,6 +449,7 @@ vesagtf_mode_params(unsigned h_pixels, u v_field_rate / 2 : v_field_rate; print_value(14, "[V FRAME RATE]", v_frame_rate); +#endif /* 15. Find number of pixels in left margin: ok? -- SASANO Takayoshi (JG1UAA)

lib/Makefile: libfido2 requires libz

2021-11-11 Thread SASANO Takayoshi
works good, but I think there is better build order. -- SASANO Takayoshi (JG1UAA)

com.c: ASIX AX99100(PCIe UART) probed FIFO depth=0 issue

2021-10-15 Thread SASANO Takayoshi
obe(struct com_softc *sc) fifo |= FIFO_ENABLE_64BYTE; com_write_reg(sc, com_fifo, fifo); + delay(100); for (len = 0; len < 256; len++) { com_write_reg(sc, com_data, (len + 1)); -- SASANO Takayoshi (JG1UAA)

puc(4): [WIP] TXIC TX382B UART controller support (2)

2021-05-29 Thread SASANO Takayoshi
reak; + default: + /* do nothing */ + break; + } com_attach_subr(sc); } -- SASANO Takayoshi (JG1UAA)

(re) [PATCH] src/libexec/ftpd: fix nlist with -option does not work

2020-01-11 Thread SASANO Takayoshi
ping On Mon, 18 Nov 2019 14:56:46 +0900, SASANO Takayoshi wrote: > > Hello, > > At least OpenBSD-6.5 and 6.6's ftpd does not work NLIST command with any > -option like this. > > > ftp> nlist > 150 Opening ASCII mode data connection for 'file l

[PATCH] src/libexec/ftpd: fix nlist with -option does not work

2019-11-17 Thread SASANO Takayoshi
retrieve(RET_FILE, dirname); + retrieve(RET_NLIST, dirname); goto out; } perror_reply(550, whichf); -- SASANO Takayoshi (JG1UAA)

ehci(4): split interrupt transfer fix

2019-01-18 Thread SASANO Takayoshi
dphub |= htole32( EHCI_QH_SET_HUBA(hshubaddr) | EHCI_QH_SET_PORT(hshubport) | - EHCI_QH_SET_CMASK(0x1c) /* XXX */ + EHCI_QH_SET_CMASK(0xe0) ); } sqh->qh.qh_curqtd = htole32(EHCI_LINK_TERMINATE); -- SASANO Takayoshi (JG1UAA)

ehci(4): interrupt transfer fix

2019-01-06 Thread SASANO Takayoshi
if (xfertype != UE_ISOCHRONOUS) { -- SASANO Takayoshi (JG1UAA)

ugl(4): maintenance

2018-03-06 Thread SASANO Takayoshi
p;ifp->if_snd); + + splx(s); } int -- SASANO Takayoshi (JG1UAA)

[patch] puc(4) add ASIX AX99100 support

2017-08-04 Thread SASANO Takayoshi
dev 0 function 3 "ASIX AX99100" rev 0x00: ports: 1 com com7 at puc3 port 0 apic 5 int 16: st16650, 32 byte fifo ok? -- SASANO Takayoshi (JG1UAA) Index: pcidevs === RCS file: /cvs/src/sys/dev/pci/pcidevs,v retrie

puc(4): serial console, UART's address != PCI-BAR

2016-08-23 Thread SASANO Takayoshi
ngs[i].h) == 0) { sc->sc_bar_mappings[i].t = comconsiot; - sc->sc_bar_mappings[i].h = comconsioh; - sc->sc_bar_mappings[i].s = COM_NPORTS; + sc->sc_bar_mappings[i].s = size; sc->sc_bar_mappings[i].mapped = 1; continue; } Regards, -- SASANO Takayoshi

puc(4): [WIP] TXIC TX382B UART controller support

2016-03-19 Thread SASANO Takayoshi
his site is written in Chinese, use Google Translate. Regards, -- SASANO Takayoshi Index: pcidevs === RCS file: /cvs/src/sys/dev/pci/pcidevs,v retrieving revision 1.1790 diff -u -p -r1.1790 pcidevs --- pcidevs 15 Mar 2016 07:37:15

Re: puc(4): [WIP] TXIC TX382B UART controller support

2016-03-19 Thread SASANO Takayoshi
e depth of Tx/Rx FIFO, it uses MCR_LOOPBACK to enter loopback mode. I found TX382B does not loopback with setting MCR_LOOPBACK, and this cause com_fifo_probe() detects no FIFO. It is difficult to write a special code to com.c, I think TX382B should work without Tx/Rx FIFO. There is other good and cheap UART chip! Regards, -- SASANO Takayoshi

pciide(4): cannot boot -current on 86duino EduCake

2015-10-06 Thread SASANO Takayoshi
printf("%s: %s ignored (disabled)\n", sc->sc_wdcdev.sc_dev.dv_xname, cp->name); + cp->hw_ok = 0; continue; } pciide_map_compat_intr(pa, cp, channel, interface); -- SASANO Takayoshi

uslhcom(4) driver for USB HID based UART

2015-01-02 Thread SASANO Takayoshi
Hello, Here is the driver for Silicon Labs CP2110 USB HID based UART. It called uhidcom(4) and now renamed to uslhcom(4). Now working on -current. -- SASANO Takayoshi Index: arch/i386/conf/GENERIC === RCS file: /cvs/src/sys/arch

Re: [WIP] uhidcom(4) driver for USB HID based UART

2014-12-17 Thread SASANO Takayoshi
At Wed, 17 Dec 2014 22:43:40 +1100, Jonathan Gray wrote: > > On Wed, Dec 17, 2014 at 07:49:59PM +0900, SASANO Takayoshi wrote: > > Hi, > > > > I am trying to write a driver for Silicon Labs CP2110 USB HID based UART. > > Here is work-in-progress code, and it se

[WIP] uhidcom(4) driver for USB HID based UART

2014-12-17 Thread SASANO Takayoshi
, but currently it is not supported --- too expensive to buy evaluation board. -- SASANO Takayoshi Index: arch/i386/conf/GENERIC === RCS file: /cvs/src/sys/arch/i386/conf/GENERIC,v retrieving revision 1.792 diff -u -p -u -p -r1.792 GE

Re: uslcom(4): fix for CP2110 USB HID-UART misdetection

2014-11-23 Thread SASANO Takayoshi
Hi, At Wed, 19 Nov 2014 10:56:15 +0100, Martin Pieuchot wrote: > > On 18/11/14(Tue) 05:25, SASANO Takayoshi wrote: > > Hi all, > > > > I bought Silicon Labs CP2110-EK USB HID-to-UART evaluation kit > > and connected to OpenBSD box. > > > > uslcom

uslcom(4): fix for CP2110 USB HID-UART misdetection

2014-11-17 Thread SASANO Takayoshi
2: input=0, output=0, feature=19 Regards, -- SASANO Takayoshi

Re: armv7: banana pi, Allwinner A20 board

2014-10-18 Thread SASANO Takayoshi
UTPUT WHEN REPORTING THIS PANIC! DO NOT EVEN BOTHER REPORTING THIS WITHOUT INCLUDING THAT INFORMATION! ddb>abd I think sxiuartcngetc() have no problem and something makes worse. Do I have to check page table (memory attribute of ARMv7 MMU) when running UKC? -- SASANO Takayoshi

Re: armv7: banana pi, Allwinner A20 board

2014-10-09 Thread SASANO Takayoshi
Hello, Here is the log of new image. Booting with "-c" option, UKC still hangs up. I hope the log helps debugging. Regards, -- SASANO Takayoshi U-Boot SPL 2014.04-10694-g2ae8b32-dirty (Oct 01 2014 - 17:40:04) Board: Bananapi DRAM: 1024 MiB CPU: 96000Hz, AXI/AHB/APB: 3/2/2 s

Re: armv7: banana pi, Allwinner A20 board

2014-10-07 Thread SASANO Takayoshi
rnia. All rights reserved. Copyright (c) 1995-2014 OpenBSD. All rights reserved. http://www.OpenBSD.org User Kernel Config UKC> -- SASANO Takayoshi

Re: armv7: banana pi, Allwinner A20 board

2014-10-07 Thread SASANO Takayoshi
HCI 1.1 scsibus0 at ahci0: 32 targets ehci0 at sunxi0 usb0 at ehci0: USB revision 2.0 uhub0 at usb0 "Allwinner EHCI root hub" rev 2.00/1.00 addr 1 ehci1 at sunxi0 usb1 at ehci1: USB revision 2.0 uhub1 at usb1 "Allwinner EHCI root hub" rev 2.00/1.00 addr 1 (hang-up) -- SASANO Takayoshi

Re: armv7: banana pi, Allwinner A20 board

2014-10-05 Thread SASANO Takayoshi
article.php?story=20140501232036142 it is written in Japanese but maybe good hint) Regards, -- SASANO Takayoshi [case 1] U-Boot SPL 2014.04-10694-g2ae8b32-dirty (Oct 01 2014 - 17:40:04) Board: Bananapi DRAM: 1024 MiB CPU: 96000Hz, AXI/AHB/APB: 3/2/2 spl: not an uImage at 1600 U-Boot 20

Re: armv7: banana pi, Allwinner A20 board

2014-10-03 Thread SASANO Takayoshi
armv7 uses U-Boot. Tweak uEnv.txt? -- SASANO Takayoshi

Re: armv7: banana pi, Allwinner A20 board

2014-10-02 Thread SASANO Takayoshi
Hi, > Try this[1] kernel and have a look if it has the same issue or not. Kernel did not started... U-Boot says checksum is ok, so maybe .umg file is not corrupted. Regards, -- SASANO Takayoshi U-Boot SPL 2014.04-10694-g2ae8b32-dirty (Oct 01 2014 - 17:40:04) Board: Bananapi DRAM: 1024

armv7: banana pi, Allwinner A20 board

2014-10-02 Thread SASANO Takayoshi
know what is happening. What can I do for solving this problem? -- SASANO Takayoshi [uEnv.txt] mmcboot=mmc rescan; fatload mmc 0 0x6000 bsd.umg && bootm 0x6000; bootargs=sd0a:/bsd; uenvcmd=run mmcboot; [1st try - hang up] --

[patch] puc(4) add Winchiphead CH382 support

2014-09-22 Thread SASANO Takayoshi
i16750, 64 byte fifo I referred the following pages: http://www.spinics.net/lists/linux-serial/msg11744.html http://kent-vandervelden.blogspot.jp/2014/08/linux-parallel-port-cards.html Can I commit? Regards, -- SASANO Takayoshi Index:

add Winchiphead CH382 PCIe-UART to pcidevs

2014-09-21 Thread SASANO Takayoshi
Hello, Here is Nanjing QinHeng Electronics (Winchiphead)'s CH382 PCIe-UART controller's PCI vendor/device ID. Chinese Datasheet can be obtained from http://www.wch.cn/downloads/downfile.php?id=140 Can I commit? Regards, -- SASANO Takayoshi Inde

pciide(4): port NetBSD's rdcide(4)

2014-07-13 Thread SASANO Takayoshi
, but poor performance boost because CPU is too slow... 109min -> 101min :-(. Regards, -- SASANO Takayoshi Index: pciide.c === RCS file: /cvs/src/sys/dev/pci/pciide.c,v retrieving revision 1.345 diff -u -p -r1.345 pciide.c ---

pcidevs: add devices for Vortex86EX SoC

2014-07-09 Thread SASANO Takayoshi
USB -product RDC R6061_EHCI 0x6061 R6061 USB +product RDC R6060_OHCI 0x6060 R6060 USB OHCI +product RDC R6061_EHCI 0x6061 R6061 USB EHCI /* Realtek products */ product REALTEK RTS52090x5209 RTS5209 Card Reader -- SASANO Takayoshi

Re: uchcom(4) did not work

2014-05-13 Thread SASANO Takayoshi
Hi, Simply magic values are rewrited with #define. If these values need to be disassembled, please take a while... SASANO Takayoshi Index: uchcom.c === RCS file: /cvs/src/sys/dev/usb/uchcom.c,v retrieving revision 1.19 diff

Re: uchcom(4) did not work

2014-05-13 Thread SASANO Takayoshi
changed. It seems that the content/function of UCHCOM_REG_LCR1 has been changed, and generated results are doubtful. So I use Linux's magic numbers. Regards, -- SASANO Takayoshi

uchcom(4) did not work

2014-05-13 Thread SASANO Takayoshi
Hello, Recently I bought Arduino board which uses Nanjing QinHeng (WinChipHead) CH340T USB-UART bridge via eBay, and I found uchcom(4) did not work. At misc@, other user reported similar problem. [1] The uchcom(4) comes from NetBSD and it seems to be worked at that time. I found that uchcom_set_

umodem.c: debug message fix

2014-04-30 Thread SASANO Takayoshi
Hello, I found some debug messages need to be fixed in sys/dev/usb/umodem.c. Can I commit the diff? SASANO Takayoshi Index: umodem.c === RCS file: /cvs/src/sys/dev/usb/umodem.c,v retrieving revision 1.55 diff -u -p -r1.55

Re: azalia(4): RIRB DMA engine needs delay after started

2014-02-25 Thread SASANO Takayoshi
Hello, > This can wait til after 5.5, but I made the diff since I was looking > at the code. ok by sasano@, it works on my 86duino EduCake! SASANO Takayoshi

Re: azalia(4): RIRB DMA engine needs delay after started

2014-02-25 Thread SASANO Takayoshi
Hi, > Thanks, here is a slightly reworked diff that does the wait in a way > that's more in line with other bits of azalia(4) that wait for a bit > in a register to go on or off. Okay, there is no problem with my 86duino EduCake. Thanks. -- SASANO Takayoshi

azalia(4): RIRB DMA engine needs delay after started

2014-02-24 Thread SASANO Takayoshi
art RIRB DMA engine. (Vortex86EX's CORB DMA did not required any delay. It starts immediately.) Here is the patch to add delay. Regards, -- SASANO Takayoshi Index: azalia.c === RCS file: /cvs/src/sys/dev/pci/azalia.c,v retrieving r

udav(4): add CoreChip RD9700 support

2014-01-21 Thread SASANO Takayoshi
s no remedy for this problem. Comments or ok? Regards, -- SASANO Takayoshi Index: if_udav.c === RCS file: /cvs/src/sys/dev/usb/if_udav.c,v retrieving revision 1.64 diff -u -p -r1.64 if_udav.c --- if_udav.c 15 Nov 2013 10:1

ugl(4): self->dv_unit fix (Re: cdce(4): sc->cdce_unit)

2013-12-05 Thread SASANO Takayoshi
Hello, if_ugl.c has similar issue, and I think this should be fixed. ok to commit? SASANO Takayoshi Index: if_ugl.c === RCS file: /cvs/src/sys/dev/usb/if_ugl.c,v retrieving revision 1.2 diff -u -p -r1.2 if_ugl.c --- if_ugl.c

cdce(4): sc->cdce_unit

2013-12-03 Thread SASANO Takayoshi
sc->cdce_unit = self->dv_unit; sc->cdce_udev = uaa->device; sc->cdce_ctl_iface = uaa->iface; id = usbd_get_interface_descriptor(sc->cdce_ctl_iface); And, sc->sc_unit of sys/dev/usb/if_cdcef.c seems to have save problem. Regards, -- SASANO Takayoshi

Re: Genesys Logic GL620USB-A, USB PC-to-PC link cable (take 2)

2013-12-03 Thread SASANO Takayoshi
Hello, jca@ privately advised that I should write my own copyright to describe who modified the code. I am planning to add notice like if_axe.c and sent the diff to him but there is no answer (too busy?). So I ask here. Is there any good solution? Thanks, SASANO Takayoshi Index

Re: Genesys Logic GL620USB-A, USB PC-to-PC link cable (take 2)

2013-11-16 Thread SASANO Takayoshi
gured with +.Xr ifconfig 8 +in the same way as other Ethernet interfaces. +It does not support different media types or options. +.Sh SEE ALSO +.Xr netintro 4 , +.Xr uhub 4 , +.Xr usb 4 , +.Xr ifconfig 8 -- SASANO Takayoshi

Re: Genesys Logic GL620USB-A, USB PC-to-PC link cable (take 2)

2013-11-15 Thread SASANO Takayoshi
Hello, I committed ugl(4) driver to source tree. The driver is derived from upl(4) driver, so licence is NetBSD. Thanks. -- SASANO Takayoshi At Fri, 15 Nov 2013 10:56:37 +0100, Martin Pieuchot wrote: > > On 14/11/13(Thu) 17:44, Brad Smith wrote: > > On 14/11/13 3:29 PM, SASANO Tak

Genesys Logic GL620USB-A, USB PC-to-PC link cable (take 2)

2013-11-14 Thread SASANO Takayoshi
I have to write copyright notice --- NetBSD or OpenBSD. if_ugl.c is based on if_upl.c, and if_upl.c has NetBSD's one. Regards, -- SASANO Takayoshi Index: arch/alpha/conf/GENERIC === RCS file: /cvs/src/sys/arch/alpha/conf/GENERIC,v retri

Genesys Logic GL620USB-A, USB PC-to-PC link cable

2013-10-25 Thread SASANO Takayoshi
[1] http://circuithijacker.blogspot.jp/2007/02/usb-host-to-host-cables-with-slax-linux.html [2] http://www.linux-usb.org/usbnet/ Best regards, -- SASANO Takayoshi

[PATCH] uthum(4) calibration message fix

2013-09-26 Thread SASANO Takayoshi
95430658049 ---- SASANO Takayoshi Index: uthum.c === RCS file: /cvs/src/sys/dev/usb/uthum.c,v retrieving revision 1.23 diff -u -p -r1.23 uthum.c --- uthum.c 8 May 2013 08:26:25 - 1.23 +++ uthum.c 26 Sep 2013 20:28:12 -

Re: [NEW] ugold(4) driver for Microdia's USB TEMPer variant (take 3)

2013-09-05 Thread SASANO Takayoshi
driver possesses a collection of sensor values which are +made available through the +.Xr sysctl 8 +interface. +.Sh SEE ALSO +.Xr intro 4 , +.Xr uhidev 4 , +.Xr uthum 4 , +.Xr sensorsd 8 , +.Xr sysctl 8 -- SASANO Takayoshi

[NEW] ugold(4) driver for Microdia's USB TEMPer variant (take 3)

2013-09-04 Thread SASANO Takayoshi
Hi all, Here is the driver for Microdia's USB TEMPer, take 3. http://www.uaa.org.uk/gomitext/2013/20130905/20130905.diff Thanks to mpi@ and testers of tech@. man is not yet, sorry. Regards, SASANO Takayoshi

[NEW] ugold(4) driver for Microdia's USB TEMPer variant (take 2)

2013-05-12 Thread SASANO Takayoshi
ugold* at uhidev? into GENERIC for alpha, amd64, armish, hppa, i386, landisk, loongson, macppc, sgi (IP27, IP30, IP32), socppc and sparc64. Regards, SASANO Takayoshi

Re: [NEW] ugold(4) driver for Microdia's USB TEMPer variant

2013-05-02 Thread SASANO Takayoshi
ignores keyboard interface, so sc_hdev in ugold_softc points mouse inerface. Maybe this SetReport will be able to replace issuing uhidev_set_report() when detecting keyboard interface in ugold_attach(). >> +/* init process */ >> +if (ugold_issue_cmd(sc, cmd_get_offset, sizeof(cmd_get_offset), 200)) >> +return EIO; >> + >> +/* received one interrupt message, it contains offset parameter */ >> +sc->sc_num_sensors = sc->sc_ibuf[1]; > > How can you be sure sc_ibuf contains the data you asked for? Well, sanity check will be required. Cheers, -- SASANO Takayoshi

[NEW] ugold(4) driver for Microdia's USB TEMPer variant

2013-03-31 Thread SASANO Takayoshi
) and already use Microdia's-variant-patched uthum(4) driver, revert original uthum(4). ok or comments, please. Cheers, -- SASANO Takayoshi

Re: uthum(4): Microdia's USB TEMPer variant

2013-03-26 Thread SASANO Takayoshi
Hello, Luis. Now I am rewriting a driver for Microdia's USB TEMPer with advices from yuo@ and deraadt@. Please wait a while and thank you for trying my patch. Thanks. -- SASANO Takayoshi

uthum(4): Microdia's USB TEMPer variant

2013-03-16 Thread SASANO Takayoshi
20130315/uthum-wip.diff Thanks, SASANO Takayoshi

[patch] puc(4) add I-O DATA RSA-PCI2 support

2012-07-11 Thread SASANO Takayoshi
tor OX16PCI954 UARTs", */ { PCI_VENDOR_OXFORD2, PCI_PRODUCT_OXFORD2_OX16PCI954, 0, 0 }, By the way, does someone know how to use over 230400bps? I cannot find B460800 and B921600 in . Regards, SASANO Takayoshi

diff: fix waiting problem on AMD Hudson's AHCI (Re: AMD APU report)

2012-04-12 Thread SASANO Takayoshi
I_PRODUCT_AMD_HUDSON_AHCI_1, + NULL, ahci_ati_sb700_attach }, { PCI_VENDOR_ATI, PCI_PRODUCT_ATI_SB600_SATA, NULL, ahci_ati_sb600_attach }, SASANO Takayoshi

Re: X Intel driver update. [TESTING NEEDED]

2011-09-14 Thread SASANO Takayoshi
100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) intagp0 at vga1 agp0 at intagp0: aperture at 0xd000, size 0x1000 inteldrm0 at vga1: apic 4 int 16 drm0 at inteldrm0 "Intel G41 Video" rev 0x03 at pci0 dev 2 function 1 not configured SASANO Takayoshi

amd64: Phenom 9x00's TLB errata warning

2010-11-09 Thread SASANO Takayoshi
1.13, 1.17 and 1.18 specialreg.h - add definitions for amd64errata.c - modified NB_CFG_DISIOREQLOCK and DC_CFG_DIS_CNV_WC_SSO, they are misdefined (see src/sys/arch/x86/include/specialreg.h of NetBSD, revision 1.48 and 1.49) -- SASANO Takayoshi (JG1UAA/@uaa)

Re: amd64: Phenom 9x00's TLB errata warning

2010-11-09 Thread SASANO Takayoshi
Oops, try again... At Tue, 09 Nov 2010 20:48:37 +0900, SASANO Takayoshi wrote: > > Hello, > > Phenom 9500 has TLB errata and this should be workarounded by BIOS. > But some BIOS do nothing by default, I think the warning is needed. > > Here is the patch, please review. &g