Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - cheshirecat

#1
Camera-specific Development / Re: Canon 5D Mark IV
February 28, 2018, 07:03:35 PM
Quote from: extremelypoorfilmaker on February 15, 2018, 01:56:01 PM
On this link:
http://vfxcamdb.com/category/camera/canon/
Under the Canon 5D4 voice, they claim it can produce: 14-bit DNG (Magic Lantern RAW)

Looking at that page I only see 14-bit DNG (Magic Lantern RAW) under the listing for the 5D3, not the 5D4
#2
Camera-specific Development / Re: Canon 5D Mark IV
January 11, 2018, 08:03:29 PM
Quote from: dfort on December 18, 2017, 06:14:50 PM
Note that it isn't trivial because the 5D4 uses a Digic 6+ processor and ARM Thumb2 instruction set so you can't just go searching for stubs that match the ones used the the current ports

True but I think some stubs can be found by comparing the code.
I think I found some stubs following on from Chris Miller's work. I reckon I went about as far as I could with that though, back in July 2017.
https://bitbucket.org/johncheshire/magic-lantern-fork/commits/52b1a828a076573333d7de9f235ba9c23d8a40a1
#3
Camera-specific Development / Re: Canon 5D Mark IV
July 23, 2017, 06:07:24 PM
Quote from: cheshirecat on July 19, 2017, 05:48:43 PM
Thanks for the advice. I tried capdis and it worked but disassembled without text strings when I tried it.

CORRECTION: I had the wrong start address in my capdis command.
Start address should be 0xfe000001 NOT 0xfe000000. The lowest bit tells capdis whether or not to disassemble thumb.
My capdis disassembled code now looks very similar to my disassemblev7.pl disassembled code.
#4
Camera-specific Development / Re: Canon 5D Mark IV
July 19, 2017, 05:48:43 PM
Quote from: a1ex on July 17, 2017, 09:51:51 PM
First of all, 5D4 has mostly Thumb code, and ARM-console won't help with that (it's ancient stuff I wrote before getting an IDA license, ARM only). Look on CHDK forum for suggestions (from there, I've tried capdis, but only for double-checking small snippets of code where
I didn't trust the output from IDA).
Thanks a1ex.  Ah, I knew about the Thumb code but didn't realise ARM-console was not the way to go with it.
Thanks for the advice. I tried capdis and it worked but disassembled without text strings when I tried it.
I had better luck with the GPL Disassembling advice at CHDK and the disassemblev7.pl from there produced a disassembly with text strings. I now have disassembled code which agrees with the stubs found by chris_overseas. I have found a few more stubs and have registered at bitbucket. I will fork the ML repo once I have figured out the bitbucket workflow ( chris_overseas has given me his ideas for what to do at bitbucket ).

Quote from: a1ex on July 17, 2017, 09:51:51 PM
Many stubs are easily identified from strings; chris_overseas found some (look up his repo). Running the firmware in QEMU will save an IDC with what functions got called during that session. Currently the emulation works for the bootloader (which is ARM code) and it also runs a tiny part of the main firmware.
Yes, I had seen the initial stubs work from chris_overseas and it was that which inspired me to have a go to see what I might be able to do. I have been in contact with Chris and he has been very helpful.
I am yet to get QEMU up and running but that is my next step.

Quote from: a1ex on July 17, 2017, 09:51:51 PM
First puzzle to solve: how to jump to main firmware from autoexec.bin? Note the 5D4 has two cores, and I believe we have to do something about it somehow.

Next step (which is easy, will probably work in QEMU, but not on the real hardware) would be to adapt the 7D2/80D startup code (which... works in QEMU, but not on the real hardware).

Third step would be making the startup code work on the real hardware (likely as easy as copying a routine from CHDK, discussed on 80D thread). Since I don't have a D6 model yet, I didn't feel any rush to try it.

After that, porting ML should be more or less straightforward (I don't expect major issues, other than some special handling for Thumb stubs).

For the first puzzle (which was solved for single-digic D6 models, and was a non-issue on earlier single-digic models), I've made some limited progress understanding the IPC protocol (communication between the two cores); if you (or anyone else) is interested in continuing this investigation, I can publish them in the current state.

I would be happy to look at the jump to main firmware from autoexec.bin problem to see if there is anything I can figure out. So if you can publish your work on the IPC protocol, please do.
#5
Camera-specific Development / Re: Canon 5D Mark IV
July 17, 2017, 08:16:38 PM
My setup;
I have a working ML Development environment in Ubuntu on a VirtualBox.
I have ARM Console working.

From ARM Console I have outputted a disassembly of ROM1.BIN from a 5d4
I did that by following the instructions at
http://magiclantern.wikia.com/wiki/GPL_Tools/ARM_console
QuotePrepare a working directory where you will put the input files. You will need:
    Some dumps, with the .bin extension. Include the load address in the dump name.
    Some databases, in IDC or Stubs (*.S) format. Try to give them names similar to the dumps, to help the autodetection.

Question: What should I use as the load address ?
Question: I presume that there is currently no IDC I could use for this dump ?
Question: I presume that there is currently no Stub I could use for this dump, since the stubs have not yet been found ?