svn commit: r212687 - head/sys/powerpc/powermac

2010-09-15 Thread Andreas Tobler
Author: andreast Date: Wed Sep 15 19:08:41 2010 New Revision: 212687 URL: http://svn.freebsd.org/changeset/base/212687 Log: Increase register access delay to deal with the high-latency I2C chipset found in some models of Powermac G5. Approved by: nwhitehorn (mentor) Modified: head/sys

Re: svn commit: r213098 - in head/sys: amd64/conf i386/conf pc98/conf powerpc/conf sparc64/conf

2010-09-25 Thread Andreas Tobler
Hi! On 24.09.10 11:04, David Xu wrote: Author: davidxu Date: Fri Sep 24 09:04:16 2010 New Revision: 213098 URL: http://svn.freebsd.org/changeset/base/213098 Log: Now userland POSIX semaphore is based on umtx. The kernel module is only used to support binary compatible, if want to run old

svn commit: r213904 - in head/sys: conf dev/iicbus powerpc/conf powerpc/powermac

2010-10-15 Thread Andreas Tobler
== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/dev/iicbus/ds1775.cFri Oct 15 20:08:16 2010 (r213904) @@ -0,0 +1,255 @@ +/*- + * Copyright (c) 2010 Andreas Tobler + * All

svn commit: r227739 - in head: . contrib/binutils/ld/emulparams contrib/gcc/config/rs6000 contrib/llvm/tools/clang/lib/Driver gnu/usr.bin/binutils/ld sys/boot/ofw sys/boot/powerpc sys/boot/uboot

2011-11-19 Thread Andreas Tobler
Author: andreast Date: Sat Nov 19 19:25:57 2011 New Revision: 227739 URL: http://svn.freebsd.org/changeset/base/227739 Log: Rename the linker emulation name for powerpc and powerc64. This is needed that we can also use the upstream binutils linker where we have to have a unique name for the

Re: svn commit: r228330 - in head: include sys/sys

2011-12-08 Thread Andreas Tobler
On 07.12.11 22:17, David Chisnall wrote: Author: theraven Date: Wed Dec 7 21:17:50 2011 New Revision: 228330 URL: http://svn.freebsd.org/changeset/base/228330 Log: As per das@'s suggestion, s/__noreturn/_Noreturn/, since the latter is an identifier reserved for the implementation in C99 a

Re: svn commit: r228330 - in head: include sys/sys

2011-12-11 Thread Andreas Tobler
On 08.12.11 21:40, Andreas Tobler wrote: On 07.12.11 22:17, David Chisnall wrote: Author: theraven Date: Wed Dec 7 21:17:50 2011 New Revision: 228330 URL: http://svn.freebsd.org/changeset/base/228330 Log: As per das@'s suggestion, s/__noreturn/_Noreturn/, since the latter

Re: svn commit: r228955 - head/include

2011-12-29 Thread Andreas Tobler
Hi Ed, On 29.12.11 19:32, Ed Schouten wrote: * Andreas Tobler, 20111229 18:43: Thank you Ed! gcc-4.6 bootstrap successful. But it seems GCC 4.7 is still broken. I am not planning to fix that, because it's a shortcoming of GCC. As soon as the GNU folks implement C++11 [[noreturn]], it s

Re: svn commit: r228955 - head/include

2011-12-29 Thread Andreas Tobler
On 29.12.11 15:41, Ed Schouten wrote: Author: ed Date: Thu Dec 29 14:41:17 2011 New Revision: 228955 URL: http://svn.freebsd.org/changeset/base/228955 Log: Don't define static_assert for C++. Even though _Static_assert() is pretty robust for C code, it cannot work correctly with C++ co

svn commit: r229494 - head/sys/powerpc/include

2012-01-04 Thread Andreas Tobler
Author: andreast Date: Wed Jan 4 16:02:52 2012 New Revision: 229494 URL: http://svn.freebsd.org/changeset/base/229494 Log: Introduce internal macros for __U/INT64_C to define the U/INT64_MAX/MIN values properly. The previous definition only worked if __STDC_LIMIT_MACROS and __STDC_CONSTANT_

svn commit: r229496 - head/sys/mips/include

2012-01-04 Thread Andreas Tobler
Author: andreast Date: Wed Jan 4 16:07:16 2012 New Revision: 229496 URL: http://svn.freebsd.org/changeset/base/229496 Log: Apply the same change as in r229494. Requested by: ed Modified: head/sys/mips/include/_stdint.h Modified: head/sys/mips/include/_stdint.h =

svn commit: r215435 - head/sys/boot/powerpc/ofw

2010-11-17 Thread Andreas Tobler
Author: andreast Date: Wed Nov 17 19:25:37 2010 New Revision: 215435 URL: http://svn.freebsd.org/changeset/base/215435 Log: Load the full 16k stack space. Approved by: nwhitehorn (mentor) Modified: head/sys/boot/powerpc/ofw/start.c Modified: head/sys/boot/powerpc/ofw/start.c ==

svn commit: r215436 - head/sys/boot/powerpc/ofw

2010-11-17 Thread Andreas Tobler
Author: andreast Date: Wed Nov 17 19:28:48 2010 New Revision: 215436 URL: http://svn.freebsd.org/changeset/base/215436 Log: Make sure the .bss is cleared at the beginning. The pSeries OF ELF loader does not clear .bss automatically. Approved by: nwhitehorn (mentor) Modified: head/sys/

svn commit: r215437 - head/sys/boot/ofw/libofw

2010-11-17 Thread Andreas Tobler
Author: andreast Date: Wed Nov 17 19:31:48 2010 New Revision: 215437 URL: http://svn.freebsd.org/changeset/base/215437 Log: Move the declaration of the eh struct (used only when debugging is enabled) from ofwn_put into the debug section. Approved by: nwhitehorn (mentor) Modified: head

svn commit: r215438 - head/sys/boot/ofw/libofw

2010-11-17 Thread Andreas Tobler
Author: andreast Date: Wed Nov 17 19:35:56 2010 New Revision: 215438 URL: http://svn.freebsd.org/changeset/base/215438 Log: Check the real-mode? OF property to find out whether we operate in real or virtual mode. In virtual mode we have to do memory mapping. On PowerMacs it is usually false

svn commit: r215441 - head/sys/boot/powerpc/ofw

2010-11-17 Thread Andreas Tobler
Author: andreast Date: Wed Nov 17 20:37:16 2010 New Revision: 215441 URL: http://svn.freebsd.org/changeset/base/215441 Log: Revert r215435. We need to figure out the exact value to be loaded. Approved by: nwhitehorn (mentor) Modified: head/sys/boot/powerpc/ofw/start.c Modified: head/sy

svn commit: r215577 - head/sys/boot/ofw/libofw

2010-11-20 Thread Andreas Tobler
Author: andreast Date: Sat Nov 20 19:23:16 2010 New Revision: 215577 URL: http://svn.freebsd.org/changeset/base/215577 Log: Check the OF_getprop() return value before proceeding. Allocate only as much space as needed for the mode buffer. Use strcmp, relying on OF giving back NULL terminated

svn commit: r216360 - head/sys/dev/iicbus

2010-12-10 Thread Andreas Tobler
Author: andreast Date: Fri Dec 10 20:27:50 2010 New Revision: 216360 URL: http://svn.freebsd.org/changeset/base/216360 Log: On the Xserve G5 we find the LM75 instead of the DS1775. The core functionality is the same, a difference is that the DS1775 has a better precision than the LM75. But w

svn commit: r227586 - head/contrib/gcc/config/rs6000

2011-11-16 Thread Andreas Tobler
Author: andreast Date: Wed Nov 16 21:22:51 2011 New Revision: 227586 URL: http://svn.freebsd.org/changeset/base/227586 Log: Copy over the ASM_DECLARE_FUNCTION_SIZE macro from linux64.h. This macro declares the proper size of a function. Without this macro recent GNU as will complain about wi

svn commit: r217027 - head/sys/powerpc/ofw

2011-01-05 Thread Andreas Tobler
Author: andreast Date: Wed Jan 5 21:38:02 2011 New Revision: 217027 URL: http://svn.freebsd.org/changeset/base/217027 Log: Fix null string handling in ofw_real_nextprop function. Pass the right length to ofw_real_map in case of a null string. This makes ofwdump(8) work correctly when trying

svn commit: r217065 - in head/sys/powerpc: aim cpufreq powermac

2011-01-06 Thread Andreas Tobler
Author: andreast Date: Thu Jan 6 20:19:01 2011 New Revision: 217065 URL: http://svn.freebsd.org/changeset/base/217065 Log: Remove unused variables. Spotted by a cppcheck (devel/cppcheck, http://sourceforge.net/projects/cppcheck) run. Approved by: nwhitehorn (mentor) Modified: head/sys

svn commit: r217286 - head/sys/powerpc/powermac

2011-01-11 Thread Andreas Tobler
Author: andreast Date: Tue Jan 11 21:18:29 2011 New Revision: 217286 URL: http://svn.freebsd.org/changeset/base/217286 Log: Add new functions, fcu_fan_set_pwm and fcu_fan_get_pwm, to set and get the pwm values. We can now set the fan's speed of a PWM controlled fan with % numbers between 30

svn commit: r217451 - head/sys/powerpc/aim

2011-01-15 Thread Andreas Tobler
Author: andreast Date: Sat Jan 15 19:16:05 2011 New Revision: 217451 URL: http://svn.freebsd.org/changeset/base/217451 Log: Remove unused variables. Spotted by a cppcheck (devel/cppcheck, http://sourceforge.net/projects/cppcheck) run. Approved by: nwhitehorn (mentor) Modified: head/sys

svn commit: r217452 - head/sys/dev/iicbus

2011-01-15 Thread Andreas Tobler
Author: andreast Date: Sat Jan 15 19:16:56 2011 New Revision: 217452 URL: http://svn.freebsd.org/changeset/base/217452 Log: Remove unused variable. Spotted by a cppcheck (devel/cppcheck, http://sourceforge.net/projects/cppcheck) run. Approved by: nwhitehorn (mentor) Modified: head/sys/

svn commit: r217560 - head/sys/dev/iicbus

2011-01-18 Thread Andreas Tobler
Author: andreast Date: Tue Jan 18 21:47:30 2011 New Revision: 217560 URL: http://svn.freebsd.org/changeset/base/217560 Log: There are PowerMacs which do not have a hwsensor-location property for this sensor. Instead of leaving this location empty we use here the default name 'sensor'. S

svn commit: r217658 - head/sys/powerpc/powermac

2011-01-20 Thread Andreas Tobler
Author: andreast Date: Thu Jan 20 20:22:19 2011 New Revision: 217658 URL: http://svn.freebsd.org/changeset/base/217658 Log: Correct parsing of the grackle and uninorthpci ranges property. Approved by: nwhitehorn (mentor) Modified: head/sys/powerpc/powermac/grackle.c head/sys/powerpc/po

svn commit: r217659 - head/sys/powerpc/powermac

2011-01-20 Thread Andreas Tobler
Author: andreast Date: Thu Jan 20 20:23:03 2011 New Revision: 217659 URL: http://svn.freebsd.org/changeset/base/217659 Log: Remove unused variables. Spotted by a cppcheck (devel/cppcheck, http://sourceforge.net/projects/cppcheck) run. Approved by: nwhitehorn (mentor) Modified: head/sys

svn commit: r223082 - head/contrib/gdb/gdb

2011-06-14 Thread Andreas Tobler
Author: andreast Date: Tue Jun 14 15:20:30 2011 New Revision: 223082 URL: http://svn.freebsd.org/changeset/base/223082 Log: - Check on target wordsize instead of compile time define if we build on 64-bit PowerPC or 32-bit PowerPC. - Make gdb work on powerpc64, the code for this is obtained

svn commit: r223470 - head/sys/powerpc/powerpc

2011-06-23 Thread Andreas Tobler
Author: andreast Date: Thu Jun 23 09:43:53 2011 New Revision: 223470 URL: http://svn.freebsd.org/changeset/base/223470 Log: Add leading zeros when printing the stackframe on __powerpc64__. Modified: head/sys/powerpc/powerpc/db_trace.c Modified: head/sys/powerpc/powerpc/db_trace.c ===

svn commit: r223471 - head/sys/powerpc/aim

2011-06-23 Thread Andreas Tobler
Author: andreast Date: Thu Jun 23 09:46:12 2011 New Revision: 223471 URL: http://svn.freebsd.org/changeset/base/223471 Log: Fix merge typo. Modified: head/sys/powerpc/aim/mmu_oea64.c Modified: head/sys/powerpc/aim/mmu_oea64.c ==

Re: svn commit: r224216 - in head/sys: ia64/ia64 mips/mips powerpc/aim sparc64/sparc64

2011-07-25 Thread Andreas Tobler
On 24.07.11 23:35, Nathan Whitehorn wrote: On 07/19/11 07:41, Attilio Rao wrote: Author: attilio Date: Tue Jul 19 12:41:57 2011 New Revision: 224216 URL: http://svn.freebsd.org/changeset/base/224216 Log: On 64 bit architectures size_t is 8 bytes, thus it should use an 8 bytes storage.

svn commit: r224400 - head/sys/powerpc/aim

2011-07-25 Thread Andreas Tobler
Author: andreast Date: Mon Jul 25 20:10:01 2011 New Revision: 224400 URL: http://svn.freebsd.org/changeset/base/224400 Log: This a follow up commit from r224216 for powerpc 32-bit. Increase the storage size for sintrcnt/sintrnames to .long. Reviewed by: nwhitehorn Approved by: re (kib)

Re: svn commit: r224216 - in head/sys: ia64/ia64 mips/mips powerpc/aim sparc64/sparc64

2011-07-29 Thread Andreas Tobler
On 28.07.11 04:59, Attilio Rao wrote: I think that the following patch may better reflect the definition of size_t: http://www.freebsd.org/~attilio/sintrcnt-fixup32.diff Do you think you can test it out? PowerPC 32-bit built, booted and completed a buildworld. Thanks, Andreas ___

svn commit: r219718 - head/sys/powerpc/include

2011-03-17 Thread Andreas Tobler
Author: andreast Date: Thu Mar 17 19:44:00 2011 New Revision: 219718 URL: http://svn.freebsd.org/changeset/base/219718 Log: Remove duplicate definition of FIRSTARG. Approved by: nwhitehorn (mentor) Modified: head/sys/powerpc/include/frame.h Modified: head/sys/powerpc/include/frame.h ==

svn commit: r220638 - head/sys/powerpc/powerpc

2011-04-14 Thread Andreas Tobler
Author: andreast Date: Thu Apr 14 18:14:43 2011 New Revision: 220638 URL: http://svn.freebsd.org/changeset/base/220638 Log: Add stoppcbs[] arrays on powerpc(64) and have each CPU save its current context in the IPI_STOP handler. Similar as done on other architectures. Approved by: nwhit

svn commit: r220639 - head/sys/powerpc/aim

2011-04-14 Thread Andreas Tobler
Author: andreast Date: Thu Apr 14 18:26:50 2011 New Revision: 220639 URL: http://svn.freebsd.org/changeset/base/220639 Log: The macro MOEA_PVO_CHECK is empty and not used. It is a left over from the NetBSD import. Remove the definition and all its occurrences. Approved by: nwhitehorn (men

svn commit: r220642 - head/sys/powerpc/aim

2011-04-14 Thread Andreas Tobler
Author: andreast Date: Thu Apr 14 19:37:31 2011 New Revision: 220642 URL: http://svn.freebsd.org/changeset/base/220642 Log: Adjust debugging string to match the actual function. Approved by: nwhitehorn (mentor) Modified: head/sys/powerpc/aim/mmu_oea64.c Modified: head/sys/powerpc/aim/mm

svn commit: r220818 - head/sys/powerpc/aim

2011-04-19 Thread Andreas Tobler
Author: andreast Date: Tue Apr 19 07:49:58 2011 New Revision: 220818 URL: http://svn.freebsd.org/changeset/base/220818 Log: Add leading zeros when printing the physical memory chunks on __powerpc64__. Approved by: nwhitehorn (mentor) Modified: head/sys/powerpc/aim/machdep.c Modified: h

Re: svn commit: r221550 - head/sys/powerpc/conf

2011-05-08 Thread Andreas Tobler
On 08.05.11 00:17, Attilio Rao wrote: 2011/5/6 Attilio Rao: 2011/5/6 Nathan Whitehorn: Author: nwhitehorn Date: Fri May 6 20:43:02 2011 New Revision: 221550 URL: http://svn.freebsd.org/changeset/base/221550 Log: SMP has worked perfectly for a very long time on 32-bit PowerPC on both UP an

Re: svn commit: r221550 - head/sys/powerpc/conf

2011-05-09 Thread Andreas Tobler
On 09.05.11 00:15, Attilio Rao wrote: 2011/5/8 Andreas Tobler: On 08.05.11 00:17, Attilio Rao wrote: 2011/5/6 Attilio Rao: 2011/5/6 Nathan Whitehorn: Author: nwhitehorn Date: Fri May 6 20:43:02 2011 New Revision: 221550 URL: http://svn.freebsd.org/changeset/base/221550 Log: SMP has

svn commit: r222449 - in head/sys: conf dev/iicbus powerpc/conf

2011-05-29 Thread Andreas Tobler
right (c) 2010 Andreas Tobler + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + *notice,

svn commit: r222450 - head/sys/boot/powerpc/ofw

2011-05-29 Thread Andreas Tobler
Author: andreast Date: Sun May 29 14:27:11 2011 New Revision: 222450 URL: http://svn.freebsd.org/changeset/base/222450 Log: Add some missing files. Without we hang in the OF prompt asking for screen.4th. Approved by: nwhitehorn (mentor) Modified: head/sys/boot/powerpc/ofw/Makefile Mod

svn commit: r222658 - head/sys/dev/iicbus

2011-06-03 Thread Andreas Tobler
Author: andreast Date: Fri Jun 3 18:58:32 2011 New Revision: 222658 URL: http://svn.freebsd.org/changeset/base/222658 Log: - Improve error handling. - Add a retry loop for the i2c sensor reading. - Update the sensor handling for sensors which do not have a location entry. [1] Submitt

svn commit: r222659 - head/sys/powerpc/powermac

2011-06-03 Thread Andreas Tobler
Author: andreast Date: Fri Jun 3 20:43:12 2011 New Revision: 222659 URL: http://svn.freebsd.org/changeset/base/222659 Log: - Introduce a define for ZERO_C_TO_K. - Fix the printing of the temperature when we exceed the critical value. Approved by: nwhitehorn (mentor) Modified: head/sy

svn commit: r222673 - head/sys/dev/iicbus

2011-06-04 Thread Andreas Tobler
Author: andreast Date: Sat Jun 4 09:19:53 2011 New Revision: 222673 URL: http://svn.freebsd.org/changeset/base/222673 Log: Replace the FCU_ZERO_C_TO_K with the ZERO_C_TO_K from powermac_thermal.h. Approved by: nwhitehorn (mentor) Modified: head/sys/dev/iicbus/ds1775.c Modified: head/s

svn commit: r222674 - head/sys/dev/iicbus

2011-06-04 Thread Andreas Tobler
Author: andreast Date: Sat Jun 4 09:23:54 2011 New Revision: 222674 URL: http://svn.freebsd.org/changeset/base/222674 Log: - Improve error handling. - Add a retry loop for the i2c sensor reading. - Check on busy status of the chip and on invalid values. - Fix a typo in a comment. - Repl

svn commit: r222675 - head/sys/powerpc/powermac

2011-06-04 Thread Andreas Tobler
Author: andreast Date: Sat Jun 4 09:25:59 2011 New Revision: 222675 URL: http://svn.freebsd.org/changeset/base/222675 Log: - Improve error handling. - Add retry loops for the i2c read/write functions. Approved by: nwhitehorn (mentor) Modified: head/sys/powerpc/powermac/fcu.c Modifie

Re: svn commit: r222449 - in head/sys: conf dev/iicbus powerpc/conf

2011-06-04 Thread Andreas Tobler
Hi, sorry for the delay. On 29.05.11 17:10, Henrik Brix Andersen wrote: Hi, On May 29, 2011, at 16:25, Andreas Tobler wrote: Author: andreast Date: Sun May 29 14:25:42 2011 New Revision: 222449 URL: http://svn.freebsd.org/changeset/base/222449 Log: Add a new driver, the ad7417, to read

svn commit: r222686 - in head/sys: conf powerpc/conf powerpc/powermac

2011-06-04 Thread Andreas Tobler
/windtunnel.c Sat Jun 4 15:17:35 2011 (r222686) @@ -0,0 +1,216 @@ +/*- + * Copyright (c) 2011 Justin Hibbits + * Copyright (c) 2010 Andreas Tobler + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided

Re: svn commit: r222666 - head/sys/powerpc/aim

2011-06-05 Thread Andreas Tobler
On 04.06.11 05:22, Nathan Whitehorn wrote: Author: nwhitehorn Date: Sat Jun 4 03:22:16 2011 New Revision: 222666 URL: http://svn.freebsd.org/changeset/base/222666 Log: Fix a typo derived from a mismerge from mmu_oea that would cause pmap_sync_icache() to sync random (possibly uncached or

svn commit: r222860 - head/sys/dev/iicbus

2011-06-08 Thread Andreas Tobler
Author: andreast Date: Wed Jun 8 16:00:30 2011 New Revision: 222860 URL: http://svn.freebsd.org/changeset/base/222860 Log: - Improve error handling. - Add retry loops in the i2c read/write functions. - Combied the ADC channel selection and readout of the value into one iicbus_transfer t

Re: svn commit: r191261 - in head/sys/powerpc: aim include

2009-04-19 Thread Andreas Tobler
. Without this fix, some programs would occasionally get SIGTRAP instead of SIGILL on an illegal instruction. This affected Altivec detection in pixman, and possibly other software. Reported by: Andreas Tobler MFC after:1 week Thank you, I rebuilt pixman with the default

Re: svn commit: r191566 - head/sys/dev/e1000

2009-04-27 Thread Andreas Tobler
Jack F Vogel wrote: Author: jfv Date: Mon Apr 27 17:22:14 2009 New Revision: 191566 URL: http://svn.freebsd.org/changeset/base/191566 Log: Thanks for Michael Tuexen for tracking down a path where the watchdog timer was not being rearmed in txeof, and also a missing case in the new code.

Re: svn commit: r191643 - in head/sys: kern sys

2009-04-29 Thread Andreas Tobler
Kostik Belousov wrote: On Wed, Apr 29, 2009 at 03:15:44AM +, Jeff Roberson wrote: Author: jeff Date: Wed Apr 29 03:15:43 2009 New Revision: 191643 URL: http://svn.freebsd.org/changeset/base/191643 Log: - Remove the bogus idle thread state code. This may have a race in it and it onl

svn commit: r264375 - in stable/10/sys: modules/sound/driver/ai2s powerpc/include powerpc/powermac

2014-04-12 Thread Andreas Tobler
Author: andreast Date: Sat Apr 12 19:57:15 2014 New Revision: 264375 URL: http://svnweb.freebsd.org/changeset/base/264375 Log: MFC r260607, r260610, r260934: r260607: The onyx codec works also as module, so add it. r260610: Described in the man page but not implemented. Here it com

svn commit: r264376 - stable/9/sys/powerpc/include

2014-04-12 Thread Andreas Tobler
Author: andreast Date: Sat Apr 12 19:58:31 2014 New Revision: 264376 URL: http://svnweb.freebsd.org/changeset/base/264376 Log: MFC r260610: Described in the man page but not implemented. Here it comes, atomic_swap_32/64. The latter only for powerpc64. Modified: stable/9/sys/powerpc/includ

svn commit: r264982 - head/sys/dev/usb/wlan

2014-04-26 Thread Andreas Tobler
Author: andreast Date: Sat Apr 26 19:30:04 2014 New Revision: 264982 URL: http://svnweb.freebsd.org/changeset/base/264982 Log: Fix gcc build, initialize off variable. Modified: head/sys/dev/usb/wlan/if_urtwn.c Modified: head/sys/dev/usb/wlan/if_urtwn.c ===

svn commit: r249374 - stable/9/sys/sys

2013-04-11 Thread Andreas Tobler
Author: andreast Date: Thu Apr 11 18:47:16 2013 New Revision: 249374 URL: http://svnweb.freebsd.org/changeset/base/249374 Log: MFC r239046: Fix typo. PR: kern/177495 Modified: stable/9/sys/sys/bus.h Modified: stable/9/sys/sys/bus.h

svn commit: r254737 - head/sys/powerpc/powermac

2013-08-23 Thread Andreas Tobler
Author: andreast Date: Fri Aug 23 20:39:41 2013 New Revision: 254737 URL: http://svnweb.freebsd.org/changeset/base/254737 Log: Return EIO iso -1, the kiic_transfer has an signed return. Submitted by: Luiz Otavio O Souza Modified: head/sys/powerpc/powermac/kiic.c Modified: head/sys/powe

svn commit: r255018 - head/tools/build/mk

2013-08-29 Thread Andreas Tobler
Author: andreast Date: Thu Aug 29 11:40:45 2013 New Revision: 255018 URL: http://svnweb.freebsd.org/changeset/base/255018 Log: Remove GNU_PATCH leftover. Modified: head/tools/build/mk/OptionalObsoleteFiles.inc Modified: head/tools/build/mk/OptionalObsoleteFiles.inc ==

Re: svn commit: r254273 - in head: . include lib lib/libc/iconv lib/libiconv_compat lib/libkiconv share/mk sys/sys tools/build/mk

2013-09-05 Thread Andreas Tobler
On 05.09.13 22:54, John Baldwin wrote: > On Thursday, September 05, 2013 4:15:40 pm Joel Dahl wrote: >> On Thu, Sep 05, 2013 at 10:13:34AM -0400, John Baldwin wrote: >>> On Tuesday, September 03, 2013 3:52:41 pm Joel Dahl wrote: On Thu, Aug 22, 2013 at 05:58:35PM +0200, Joel Dahl wrote: >

Re: svn commit: r260073 - in head/contrib/gcc: . cp

2014-01-02 Thread Andreas Tobler
Hi Pedro, Happy new Year! On 30.12.13 03:52, Pedro F. Giffuni wrote: > Author: pfg > Date: Mon Dec 30 02:52:43 2013 > New Revision: 260073 > URL: http://svnweb.freebsd.org/changeset/base/260073 > > Log: > gcc: small diff reduction wrt gcc43 and Apple GCC. > > Obtained from: gcc 4.3 (

Re: svn commit: r260161 - in head/sys/arm: arm include

2014-01-05 Thread Andreas Tobler
On 06.01.14 03:55, Ian Lepore wrote: > On Wed, 2014-01-01 at 20:03 +, Zbigniew Bodek wrote: >> Author: zbb >> Date: Wed Jan 1 20:03:48 2014 >> New Revision: 260161 >> URL: http://svnweb.freebsd.org/changeset/base/260161 >> >> Log: >> Add polarity and level support to ARM GIC >> >> Add s

svn commit: r260375 - in head/sys/arm: arm include

2014-01-06 Thread Andreas Tobler
Author: andreast Date: Mon Jan 6 17:16:27 2014 New Revision: 260375 URL: http://svnweb.freebsd.org/changeset/base/260375 Log: Fix arm build. Reviewed by: ian, zbb Modified: head/sys/arm/arm/trap.c head/sys/arm/include/intr.h head/sys/arm/include/psl.h Modified: head/sys/arm/arm/tr

Re: svn commit: r260161 - in head/sys/arm: arm include

2014-01-06 Thread Andreas Tobler
On 06.01.14 15:34, Ian Lepore wrote: > On Mon, 2014-01-06 at 13:07 +0100, Zbigniew Bodek wrote: >> 2014/1/6 Andreas Tobler : >>> On 06.01.14 03:55, Ian Lepore wrote: >>>> On Wed, 2014-01-01 at 20:03 +, Zbigniew Bodek wrote: >>>>> Author: zbb &

svn commit: r260607 - head/sys/modules/sound/driver/ai2s

2014-01-13 Thread Andreas Tobler
Author: andreast Date: Mon Jan 13 21:44:17 2014 New Revision: 260607 URL: http://svnweb.freebsd.org/changeset/base/260607 Log: The onyx codec works also as module, so add it. MFC after:1 month Modified: head/sys/modules/sound/driver/ai2s/Makefile Modified: head/sys/modules/sound/dri

svn commit: r260610 - head/sys/powerpc/include

2014-01-13 Thread Andreas Tobler
Author: andreast Date: Mon Jan 13 22:21:29 2014 New Revision: 260610 URL: http://svnweb.freebsd.org/changeset/base/260610 Log: Described in the man page but not implemented. Here it comes, atomic_swap_32/64. The latter only for powerpc64. MFC after:1 month Modified: head/sys/powerp

svn commit: r260934 - head/sys/powerpc/powermac

2014-01-20 Thread Andreas Tobler
Author: andreast Date: Mon Jan 20 21:54:05 2014 New Revision: 260934 URL: http://svnweb.freebsd.org/changeset/base/260934 Log: Fix the resource information for the i2s-a node on certain G5 PowerMacs. This is the first step needed to get the snapper codec working on those machines. The seco

Re: svn commit: r250659 - in head: . share/mk tools/build/options tools/tools/makeroot

2013-05-16 Thread Andreas Tobler
On 15.05.13 16:30, Brooks Davis wrote: > Author: brooks > Date: Wed May 15 14:30:03 2013 > New Revision: 250659 > URL: http://svnweb.freebsd.org/changeset/base/250659 > > Log: > Add support for an external cross compiler. The cross compiler is > specified by passing the XCC, XCXX, and XCPP va

Re: svn commit: r250659 - in head: . share/mk tools/build/options tools/tools/makeroot

2013-05-20 Thread Andreas Tobler
On 20.05.13 21:51, Brooks Davis wrote: > On Fri, May 17, 2013 at 12:06:01AM +0200, Andreas Tobler wrote: >> On 15.05.13 16:30, Brooks Davis wrote: >>> Author: brooks >>> Date: Wed May 15 14:30:03 2013 >>> New Revision: 250659 >>> URL: http://svnweb.

Re: svn commit: r250659 - in head: . share/mk tools/build/options tools/tools/makeroot

2013-05-20 Thread Andreas Tobler
On 20.05.13 22:10, Brooks Davis wrote: > On Mon, May 20, 2013 at 09:59:35PM +0200, Andreas Tobler wrote: >> On 20.05.13 21:51, Brooks Davis wrote: >>> On Fri, May 17, 2013 at 12:06:01AM +0200, Andreas Tobler wrote: >>>> On 15.05.13 16:30, Brooks Davis wrote: >&g

svn commit: r257928 - head/sys/powerpc/powerpc

2013-11-10 Thread Andreas Tobler
Author: andreast Date: Sun Nov 10 22:42:56 2013 New Revision: 257928 URL: http://svnweb.freebsd.org/changeset/base/257928 Log: Prepare for 64-bit. Iow, use Elf_*hdr instead of the 32-bit ones. Modified: head/sys/powerpc/powerpc/dump_machdep.c Modified: head/sys/powerpc/powerpc/dump_machdep.c

svn commit: r258451 - in head: lib/libc/i386 lib/libc/i386/gen lib/libc/i386/string lib/libc/i386/sys lib/libkse/arch/i386/i386 sys/i386/include

2013-11-21 Thread Andreas Tobler
Author: andreast Date: Thu Nov 21 22:31:18 2013 New Revision: 258451 URL: http://svnweb.freebsd.org/changeset/base/258451 Log: Replace the WEAK_ALIAS() alias with the WEAK_REFERENCE() alias. Use it and get rid of the __CONCAT and CNAME macros. Reviewed by: bde, kib Modified: head/lib/

svn commit: r258447 - in head: lib/libc/amd64 lib/libc/amd64/gen lib/libc/amd64/sys sys/amd64/include

2013-11-21 Thread Andreas Tobler
Author: andreast Date: Thu Nov 21 21:25:58 2013 New Revision: 258447 URL: http://svnweb.freebsd.org/changeset/base/258447 Log: Introduce a WEAK_REFERENCE() alias and use it. Get rid of the CNAME and the CONCAT macros in SYS.h. Reviewed by: bde, kib Modified: head/lib/libc/amd64/SYS.h

svn commit: r258445 - in head/gnu/usr.bin/cc: . cc_tools

2013-11-21 Thread Andreas Tobler
Author: andreast Date: Thu Nov 21 21:05:11 2013 New Revision: 258445 URL: http://svnweb.freebsd.org/changeset/base/258445 Log: Fix cross compilation after r258428. Reviewed by: pfg Modified: head/gnu/usr.bin/cc/Makefile.inc head/gnu/usr.bin/cc/cc_tools/freebsd-native.h Modified: head

svn commit: r258502 - in head/lib/libc: powerpc powerpc64

2013-11-23 Thread Andreas Tobler
Author: andreast Date: Sat Nov 23 18:50:43 2013 New Revision: 258502 URL: http://svnweb.freebsd.org/changeset/base/258502 Log: Get rid of the CONCAT macro. Modified: head/lib/libc/powerpc/SYS.h head/lib/libc/powerpc64/SYS.h Modified: head/lib/libc/powerpc/SYS.h

svn commit: r258503 - head/sys/powerpc/pseries

2013-11-23 Thread Andreas Tobler
Author: andreast Date: Sat Nov 23 18:52:14 2013 New Revision: 258503 URL: http://svnweb.freebsd.org/changeset/base/258503 Log: Limit the large page size to 16MB for now. MFC after:1 week Modified: head/sys/powerpc/pseries/mmu_phyp.c Modified: head/sys/powerpc/pseries/mmu_phyp.c

svn commit: r258504 - in head/sys/powerpc: aim include ofw

2013-11-23 Thread Andreas Tobler
Author: andreast Date: Sat Nov 23 18:58:17 2013 New Revision: 258504 URL: http://svnweb.freebsd.org/changeset/base/258504 Log: Save and restore the trap vectors when doing OF calls on pSeries machines. It turned out that on pSeries machines the call into OF modified the trap vectors and t

svn commit: r258615 - head/sys/powerpc/pseries

2013-11-25 Thread Andreas Tobler
Author: andreast Date: Tue Nov 26 05:26:10 2013 New Revision: 258615 URL: http://svnweb.freebsd.org/changeset/base/258615 Log: Take care to handle the full 16 byte buffer in the get/put routines. Also, skip the VTERM header once when receiving data from the hypervisor call when we have a HVT

svn commit: r258722 - head/sys/powerpc/powerpc

2013-11-28 Thread Andreas Tobler
Author: andreast Date: Thu Nov 28 21:57:17 2013 New Revision: 258722 URL: http://svnweb.freebsd.org/changeset/base/258722 Log: Give some output about the CPU clock on IBMPOWER machines, currently read from OF. Linux does it similar, means they also read the OF values and display them. T

svn commit: r258753 - head/sys/conf

2013-11-29 Thread Andreas Tobler
Author: andreast Date: Fri Nov 29 20:19:00 2013 New Revision: 258753 URL: http://svnweb.freebsd.org/changeset/base/258753 Log: Fix typo. Modified: head/sys/conf/kern.pre.mk Modified: head/sys/conf/kern.pre.mk == ---

svn commit: r258778 - head/sys/powerpc/ofw

2013-11-30 Thread Andreas Tobler
Author: andreast Date: Sat Nov 30 21:54:55 2013 New Revision: 258778 URL: http://svnweb.freebsd.org/changeset/base/258778 Log: Add a printf to inform about the logical memory block size which is in use by the system. This might give a hint why a pSeries system is not booting. Modified: head

svn commit: r259006 - head/sys/powerpc/powerpc

2013-12-05 Thread Andreas Tobler
Author: andreast Date: Thu Dec 5 21:25:56 2013 New Revision: 259006 URL: http://svnweb.freebsd.org/changeset/base/259006 Log: In case we have many continous regions without gaps we have to make soure that we collapse them into one region. The previous version missed to go back one step and

svn commit: r259007 - head/sys/powerpc/include

2013-12-05 Thread Andreas Tobler
Author: andreast Date: Thu Dec 5 21:34:33 2013 New Revision: 259007 URL: http://svnweb.freebsd.org/changeset/base/259007 Log: Increase PHYS_AVAIL_SZ because on pSeries machines we can have many logical regions which represent the total amount of memory. The size of these regions is not the

svn commit: r259008 - head/sys/powerpc/pseries

2013-12-05 Thread Andreas Tobler
Author: andreast Date: Thu Dec 5 21:35:52 2013 New Revision: 259008 URL: http://svnweb.freebsd.org/changeset/base/259008 Log: Do some cosmetic fixes. Modified: head/sys/powerpc/pseries/platform_chrp.c Modified: head/sys/powerpc/pseries/platform_chrp.c ===

Re: svn commit: r259016 - in head/sys: conf dev/drm2 dev/drm2/i915 dev/drm2/radeon dev/fb dev/vt kern modules/drm2/i915kms modules/drm2/radeonkms sparc64/sparc64 sys teken

2013-12-07 Thread Andreas Tobler
On 05.12.13 23:38, Aleksandr Rybalko wrote: > Author: ray > Date: Thu Dec 5 22:38:53 2013 > New Revision: 259016 > URL: http://svnweb.freebsd.org/changeset/base/259016 > > Log: > Merge VT(9) project (a.k.a. newcons). > > Reviewed by:nwhitehorn > MFC_to_10_after:re approval >

Re: svn commit: r259016 - in head/sys: conf dev/drm2 dev/drm2/i915 dev/drm2/radeon dev/fb dev/vt kern modules/drm2/i915kms modules/drm2/radeonkms sparc64/sparc64 sys teken

2013-12-08 Thread Andreas Tobler
Hi Aleksandr, On 08.12.13 00:59, Aleksandr Rybalko wrote: > Andreas Tobler написав(ла): >> On 05.12.13 23:38, Aleksandr Rybalko wrote: >>> Author: ray >>> Date: Thu Dec 5 22:38:53 2013 >>> New Revision: 259016 >>> URL: http://svnweb.freebsd.org/chan

Re: svn commit: r259016 - in head/sys: conf dev/drm2 dev/drm2/i915 dev/drm2/radeon dev/fb dev/vt kern modules/drm2/i915kms modules/drm2/radeonkms sparc64/sparc64 sys teken

2013-12-10 Thread Andreas Tobler
On 10.12.13 14:43, Tijl Coosemans wrote: > On Tue, 10 Dec 2013 15:31:44 +0200 Aleksandr Rybalko wrote: >> That keyboards have no Shift key for that? :) >> I will be glad to apply your changes, but I have to know how it should >> be controlled. >> >> RU and UA PC keyboards have same 3 symbols '2', '

svn commit: r259227 - stable/10/sys/powerpc/pseries

2013-12-11 Thread Andreas Tobler
Author: andreast Date: Wed Dec 11 20:56:23 2013 New Revision: 259227 URL: http://svnweb.freebsd.org/changeset/base/259227 Log: MFC r258503 Limit the large page size to 16MB for now. Modified: stable/10/sys/powerpc/pseries/mmu_phyp.c Directory Properties: stable/10/ (props changed)

svn commit: r259230 - stable/10/sys/powerpc/pseries

2013-12-11 Thread Andreas Tobler
Author: andreast Date: Wed Dec 11 21:37:32 2013 New Revision: 259230 URL: http://svnweb.freebsd.org/changeset/base/259230 Log: MFC r258615 Take care to handle the full 16 byte buffer in the get/put routines. Also, skip the VTERM header once when receiving data from the hypervisor call w

svn commit: r259231 - stable/10/sys/powerpc/ofw

2013-12-11 Thread Andreas Tobler
Author: andreast Date: Wed Dec 11 21:41:21 2013 New Revision: 259231 URL: http://svnweb.freebsd.org/changeset/base/259231 Log: MFC r258778 Add a printf to inform about the logical memory block size which is in use by the system. This might give a hint why a pSeries system is not booting

svn commit: r259233 - stable/10/sys/powerpc/include

2013-12-11 Thread Andreas Tobler
Author: andreast Date: Wed Dec 11 22:00:03 2013 New Revision: 259233 URL: http://svnweb.freebsd.org/changeset/base/259233 Log: MFC r259007 Increase PHYS_AVAIL_SZ because on pSeries machines we can have many logical regions which represent the total amount of memory. The size of these re

svn commit: r259235 - in stable/10/sys: conf dev/tsec powerpc/aim powerpc/include powerpc/ofw

2013-12-11 Thread Andreas Tobler
Author: andreast Date: Wed Dec 11 22:36:20 2013 New Revision: 259235 URL: http://svnweb.freebsd.org/changeset/base/259235 Log: MFC r257991, r257992, 257993, 258504 r257991: Consolidate Apple firmware hacks and improve them by switching on the presence of mac-io devices in the tr

svn commit: r259255 - stable/10/sys/dev/ofw

2013-12-12 Thread Andreas Tobler
Author: andreast Date: Thu Dec 12 12:17:20 2013 New Revision: 259255 URL: http://svnweb.freebsd.org/changeset/base/259255 Log: MFC: r256932, r256938, r256953 r256932: Add a new function (OF_getencprop()) that undoes the transformation applied by encode-int. Specifically, it takes a set

svn commit: r259256 - stable/10/sys/powerpc/powerpc

2013-12-12 Thread Andreas Tobler
Author: andreast Date: Thu Dec 12 12:29:35 2013 New Revision: 259256 URL: http://svnweb.freebsd.org/changeset/base/259256 Log: MFC: r258722, r258757 r258722: Give some output about the CPU clock on IBMPOWER machines, currently read from OF. Linux does it similar, means they also read t

svn commit: r259257 - in stable/10/sys: conf powerpc/ofw powerpc/pseries

2013-12-12 Thread Andreas Tobler
Author: andreast Date: Thu Dec 12 12:36:40 2013 New Revision: 259257 URL: http://svnweb.freebsd.org/changeset/base/259257 Log: MFC: r258051, r258052 r258052: Following the approach with ACPI DMAR on x86, split IOMMU handling into a variant PCI bus instead of trying to shoehorn it into

svn commit: r259258 - in stable/10/sys/powerpc: ofw pseries

2013-12-12 Thread Andreas Tobler
Author: andreast Date: Thu Dec 12 13:00:07 2013 New Revision: 259258 URL: http://svnweb.freebsd.org/changeset/base/259258 Log: MFC: r258427, r258694 r258694: Make RTAS calls, which call setfault() to recover from machine checks, preserve any existing fault buffer. RTAS calls are meant

svn commit: r259485 - in stable/9/sys: . amd64/include/xen boot boot/forth boot/i386/efi boot/i386/gptboot boot/ia64/efi boot/ia64/ski boot/powerpc/boot1.chrp boot/powerpc/ofw cddl/contrib/opensola...

2013-12-16 Thread Andreas Tobler
Author: andreast Date: Mon Dec 16 22:07:49 2013 New Revision: 259485 URL: http://svnweb.freebsd.org/changeset/base/259485 Log: Fix the outstanding mergeinfo part of r249374. Modified: Directory Properties: stable/9/sys/ (props changed) stable/9/sys/amd64/include/xen/ (props changed) s

Re: svn commit: r259016 - in head/sys: conf dev/drm2 dev/drm2/i915 dev/drm2/radeon dev/fb dev/vt kern modules/drm2/i915kms modules/drm2/radeonkms sparc64/sparc64 sys teken

2013-12-18 Thread Andreas Tobler
On 18.12.13 01:24, Baptiste Daroussin wrote: > On Wed, Dec 18, 2013 at 02:21:56AM +0200, Aleksandr Rybalko wrote: >> On Tue, 10 Dec 2013 23:49:38 +0100 >> Andreas Tobler wrote: >> >>> On 10.12.13 14:43, Tijl Coosemans wrote: >>>> On Tue, 10 Dec 2

Re: svn commit: r259609 - head/sys/kern

2013-12-19 Thread Andreas Tobler
On 19.12.13 18:00, Stefan Esser wrote: > I'd replace the two occurances of LLONG_MAX with INT64_MAX and add the > missing empty line: > > static __inline sbintime_t > timer2sbintime(intptr_t data) > { > > if (data > INT64_MAX / SBT_1MS) > return INT64_MAX; > retur

Re: svn commit: r259619 - in head/contrib/gcc: . cp doc

2013-12-20 Thread Andreas Tobler
On 19.12.13 19:27, Pedro F. Giffuni wrote: > Author: pfg > Date: Thu Dec 19 18:27:32 2013 > New Revision: 259619 > URL: http://svnweb.freebsd.org/changeset/base/259619 > > Log: > gcc: backport upstream fix for issue with C++'s placement new > > Fixes GCC libstdc++/29286 > > Obtained fr

  1   2   3   >