Questions related to the PowerPC family of RISC processors.

learn more… | top users | synonyms

1
vote
0answers
23 views

MPC8xx using watchdog with uboot and linux

I have an embedded platform with a powerpc MPC875 CPU running with uboot and linux 3.2. I'd like to use the watchdog feature of this cpu. My problem is that the watchdog timed out before linux starts ...
1
vote
0answers
34 views

What's a good board for deveoping OS? [closed]

I have been developing my own OS for quite sometime now. Not kernel hacking Linux - A operating system written from scratch. However I was mostly doing it on emulators. Recently I feel the need to ...
0
votes
2answers
38 views

which c code will gets changed to rlwinm power PC assembly instruciton

which c code will gets changed to rlwinm power PC assembly instruciton?? This is the snapshot of objdump.. if(!pool || pool->maxPoolSize > SEQ_MODULUS ) /* Invalid mask or pointer is null ...
0
votes
0answers
35 views

Dynamic linking failing on linux/powerpc

I have a Xilinx FPGA running a soft processor (PowerPC). I recently cross compiled Boost libraries for PowerPC and wanted to test it. So I used one of the sample programs and tried to cross compile it ...
0
votes
1answer
25 views

I cannot understand the following gnu assembly code for powerpc architecture

#define START_GOT \ .section ".got2","aw";\ .LCTOC1 = .+32768 Is .LCTOC1 is a directive? Why is there a . before +32768?
0
votes
1answer
78 views

In ARM or powerPC archetecture, is the PCI IO space in use? [closed]

sorry for my poor english first. I known , in intel archeture, there are some instructions related to io space(in/out instruction), but in ARM or powerPC, there are not such instruction, all is ...
0
votes
1answer
85 views

How to suppress “warning: control reaches end of non-void function”

I have some PowerPC assembly code translated with a gcc cross compiler with this function: uint32_t fill_cache(void) { __asm__ ("addi 3, 0, 0\n"); /* R3 = 0 */ /* More asm here modifying R3 ...
0
votes
1answer
28 views

powerpc disassemble instruction by its raw data

How can I disassemble some intructions from memory dump? I have only raw dump, objdump understands only object format. My processor is PowerPC 440 (PowerPC Book E Architecture).
1
vote
1answer
35 views

powerpc assembly translation

Can someone who is good at assembly for the power pc help me decipher this code? extern inline void out_8(volatile unsigned char __iomem *addr, u8 val) { __asm__ __volatile__("sync;\n" ...
4
votes
0answers
59 views

Lua behaves weird on PowerPC/LynxOS platform, why?

I choose Lua 5.1 as my application's embedded scripting language, but when I port the application to a legacy platform runs LynxOS on PowerPC, thing seems going wrong. I get following code run up on ...
0
votes
3answers
71 views

c++ coding for power-pc

anyone know any cpp compilers for power-pc? Preferably something that will work for os 9. I have an old imac g3 I would like to make programs for. If cpp didn't exist for it, what should I use to ...
1
vote
1answer
82 views

How to extract function prototype from an ELF file?

I have been searching quite a lot, but haven't found a way to extract function prototype, atleast the argument types and return type from an ELF executable file. Using GNU BinUtils or any other ...
1
vote
1answer
48 views

powerpc compiler on windows gives “c++ compiler not installed on this system error”

I am trying to use msys powerpc-eabispe-gcc compiler on windows to compile a simple helloworld.cpp program, inorder to generate an elf for powerpc architecture, but I am getting "c++ compiler not ...
2
votes
2answers
77 views

Extracting and Instrumenting elf files for powerPC on windows platform

I am trying to extract information like function name and its parameters from elf file, with the goal to perform robustness testing by changing the parameter values for functions, I am working on ...
0
votes
0answers
75 views

Is low latency mode safe to use with Linux serial ports?

Is it safe to use the low_latency tty mode with Linux serial ports? The tty_flip_buffer_push function is documented that it "must not be called from IRQ context if port->low_latency is set." ...
1
vote
1answer
109 views

How to implement C timer in Vxworks

I have implemented timer functionality to find the performance of my task in windows and linux. But linux implementation is not working in Vxworks PPC 750 board. gettimeofday is not available in ...
0
votes
1answer
44 views

Building mysql++ libraries for powerpc

I have an embedded application written in C++ (running on a PowerPC in linux environment) which accesses an external database. So my application needs mysql++ libraries which needs to be built using a ...
14
votes
1answer
191 views

GCC refuses to emit long calls for operator new/delete on PowerPC

PowerPC branches only have 24 bits available for the target offset, so if the text section gets too big, branches on one end won't be able to reach targets on the other. There's a longer sequence of ...
-2
votes
1answer
104 views

How do I reserve RAM on a PowerPC CPU running Linux?

I am trying to reserve 10MB out of the 2GB onboard RAM on an embedded single-board computer that uses the Canyonlands (PowerPC-460EX) CPU. By reserve RAM, I mean block out a chunk of RAM that Linux ...
0
votes
1answer
201 views

C++ Compilation failure with Boost library

I recently cross compiled Boost library for PowerPC and generated the thread and system library. Then to test the library on my target, tried one of the sample code in Boost library and tried to build ...
1
vote
1answer
187 views

x264 library speed - Altivec vs SSE4 -

I have simple cheap dualcore intel-3ghz-debian and access to super-expensive powerPc7-Aix. And after few days of strugle, i compiled libx264 and tested it on both computers: GCC: library x264 on ...
10
votes
1answer
612 views

Incorrect floating point behavior

When I run the below C++ program in a 32-bit powerpc kernel which supports software floating emulation (hardware floating point disabled), I get a incorrect conditional evaluation. Can some tell me ...
0
votes
1answer
130 views

configure error : size of “void*” is less than “long”

configure error : size of "void*" is less than "long" This is the error I'm getting when i'm cross compiling apache for powerpc
0
votes
0answers
48 views

how can i cross-compile apache folder httpd-2.2.23 at once for powerpc

how can I cross-compile Apache folder httpd-2.2.23 at once for powerpc. When trying to cross-compile using /opt/.../usr/local/.../bin/ /path/ , the directory is not cross-compiled
0
votes
3answers
254 views

Cross Compile Boost library for PowerPC architecture

I am trying to cross compile Boost library (Thread, System) for PowerPC architecture. I followed the below steps but facing problems. I run a shell script which sets up my toolchain. The compiler ...
1
vote
3answers
93 views

Learning assembler with no programming experience

I have no programming experience except the most basic ability to read some ASM operands (MIPS). Due to a serious medical condition, I have the luxury of having 1 year of free time. I cannot work or ...
2
votes
1answer
61 views

Cannot source RVM files because of PowerPC architecture

I ran the railsinstaller from railsinstaller.org on my OS X 10.7.5, then ran into a few issues with RVM: 1) First, I got "RVM: command not found". So I created the .bash_profile and added [[ -s ...
0
votes
1answer
111 views

ppc avd manager and android sdk

I have a non Intel PowerPC G5 running 10.5.8. I downloaded Eclipse and installed Android SDK and tools and also installed a plugin using "install software" in the help sectionof eclipse. I have the ...
0
votes
0answers
59 views

Performance penalty for using small data areas?

I'm looking at IBM's Developing PowerPC Embedded Application Binary (EABI) Compliant Programs, in particular at table 4 on page 7. The benchmark results are 88kDhry/sec without using SDA, and only ...
0
votes
0answers
38 views

powerpc-gdb changing register bug

I am using Xilinx 13.1 sdk to create C programs, which uses the powerpc-gdb as debugger. Somewhere in my code I change the registers of my program to see the local variables of another thread. When I ...
0
votes
1answer
111 views

Having server x86/x64, how best develop software under AIX6/7 on C++?

Having server x86/x64, how best develop software under AIX6/7 on C++? Someone personally tried to do it and that advise from personal experience: Can have any IBM compilers for x64, which ensures ...
1
vote
1answer
60 views

How does one read the PPC op-code 'extrwi'

I understand it is a mnemoic to rlwinm with its values tweaked, but I was wondering what the actual letter represent when read. For instance, rlwinm means Rotate Left Word Immediate then aNd with ...
1
vote
2answers
169 views

SIGILL on std::ios_base::Init::Init() and std::string::assign(std::string const&)

Working with embedded linux cross compiling the code on an Ubuntu box to run on a COMX-p2020 module. I'm assuming I'm either missing or have some compiler setting incorrect which is causing the ...
8
votes
2answers
150 views

Printing floats. (Powerpc)

I am trying to print floats. Although variadic functions does not work with floats so they are promoted to double. I can manage to get rid of the warning by casting it to a double. While printing the ...
1
vote
1answer
184 views

Software Watchdog Timer resets MPC875 CPU too fast

I have a problem with using Software Watchdog Timer on a MPC875 cpu: The timer triggers reset signal VERY fast: I get less than about half of a second betwen turning the timer on and receiving the ...
16
votes
2answers
185 views

Why is function's length information of other shared lib in ELF?

Our project (C++, Linux, gcc, PowerPC) consists of several shared libraries. When releasing a new version of the package, only those libs should change whose source code was actually affected. With ...
0
votes
0answers
697 views

why no BAR address assigned to the pci devices?

Here is the issue description: After linux bootup, running command "lspci -v", we can see that pci devices can be found, but no address is assigned to devices. By further checking the linux booting ...
0
votes
1answer
102 views

Profiling Implementation Issue with GCC C/C++ cross for PowerPC

I'm trying to get the gcc profiling implemented. I am using the embedded environment eCos with a PowerPC. I programming in C. When I compile and link using the -pg switch, I find that the symbol ...
0
votes
0answers
114 views

PPC MPC5554: Which core to generate code for?

I'm using the ELDK (u-boot) tools (gcc) to compile (assembly) code for the Motorola/Freescale MPC5554 and so far so good :). I just noticed that I can't compile an instruction that I need (mtbucsr) ...
0
votes
0answers
204 views

Qemu does NOT boot debian squeeze for PPC on x86_64

Ive downloaded qemu for ppc and I also downloaded an debian sqeeze image for the ppc from http://people.debian.org/~aurel32/qemu/powerpc/ . And as per that page, when I try to run the image using ...
0
votes
1answer
85 views

u-boot: mpc5xxx.h does not support mpc55xx?

I'm new to u-boot and currently trying to port it to a mpc5554 board (from phytec) for fun. I was happy to find the mpc5xxx.h file indicating that it would be usable in my case. However, the more I ...
0
votes
1answer
102 views

Deleted function on powerPC compiler, not on gcc

In my current project we have to compile a source for openSUSE - 12.1 and for powerPC. The project is written in C++11. The openSUS build is done with gcc-4.7.2 The powerPC build with ...
1
vote
0answers
78 views

-fpic vs -fPIC powerpc confusion

I am trying to reproduce an issue I am having with some simpler code. I wrote a small script to generate a C file that looks like this: int SYM_0 = 0; int SYM_1 = 1; int SYM_2 = 2; int SYM_3 = 3; int ...
0
votes
1answer
261 views

R_PPC_REL24 relocation out of range

I am working on an embedded powerpc (e500v2) platform. I am cross compiling compiling with gcc 4.6.3 and eglibc 2.13. There is a swig library that is compiled and loaded on the target. When its loaded ...
0
votes
2answers
82 views

Multiple PowerPC instructions have same opcode

I'm trying to make sense of PowerPC instructions and ultimately disassemble them. I've found http://pic.dhe.ibm.com/infocenter/aix/v7r1/index.jsp?topic=/com.ibm.aix.aixassem/doc/alangref/ppc_instr.htm ...
1
vote
2answers
99 views

64bit arithmetic providing wrong output in 32-bit application

I couldn't understand why the below identical operations reports two different outputs. When my num is declared to be of negative value and I add the num to the baseAddr, I see my addr going past ...
2
votes
3answers
163 views

Can out-of-order execution lead to speculative memory accesses?

When a out-of-order processor encounters something like LOAD R1, 0x1337 LOAD R2, $R1 LOAD R3, 0x42 Assuming that all accesses will result in a cache miss, can the processor ask the memory ...
0
votes
1answer
181 views

Eclipse with powerpc-linux-gcc possible?

I program a embedded Linux on a separate target. For that I use Eclipse as a editor and the powerpc-linux-gcc. That's a bit uncomfortable. Is it possible to use a powerpc-linux-gcc in Eclipse?
1
vote
1answer
152 views

how to reset a PowerPC special purpose register

I need to reset (set to 0) Special Purpose Register 527 (Alt Time Base register upper). But this function sysAltTimeBaseUreset crashes my VxWorks target's PowerPC (Freescale P2020): ...
3
votes
1answer
182 views

Linux PowerPC Book E reserve pristine RAM through warm reboot

With CONFIG_FSL_BOOKE (P1020 RDB) 2.6.31 I need to reserve 1MB of RAM at some fixed location (doesn't matter where) that is pristine, meaning it is not touched by U-Boot or the bootmem allocator, so ...

1 2 3 4