TIFF is a container format, it doesn't prescribe the content. It may be RGB or anything else. Some of the tags (TIFF stands for "tagged image file format") tend to be more widely supported than others. Raw file formats tend to be rather specialized, RGB formats tend to be reasonably supported by image displayers claiming to support "TIFF", support for things like Fax Group 4 is more spotty.
That camera raw files are "TIFF" does not mean anything upfront: Sony SR2 and Nikon NEF raw files (for example) are TIFF:
Finding 'TIFF' in metadata does not automatically mean the file is TIFF.
Having the right magic number at the start of the file and proper TIFF directories is kind of a giveaway, though.
tiffinfo 207ND750/DSC_7549.NEF |head
TIFFReadDirectory: Warning, Unknown field with tag 36867 (0x9003) encountered.
TIFFReadDirectory: Warning, Unknown field with tag 37398 (0x9216) encountered.
TIFFFetchNormalTag: Warning, ASCII value for tag "Copyright" contains null byte in value; value incorrectly truncated during reading due to implementation limitations.
=== TIFF directory 0 ===
TIFF Directory at offset 0x8 (8)
Subfile Type: reduced-resolution image (1 = 0x1)
Image Width: 160 Image Length: 120
Resolution: 300, 300 pixels/inch
Bits/Sample: 8
Compression Scheme: None
Photometric Interpretation: RGB color
Orientation: row 0 top, col 0 lhs
Samples/Pixel: 3
TIFFFetchNormalTag: Warning, Incorrect count for "MakerNote"; tag ignored.
TIFFReadCustomDirectory: Warning, Wrong data type 3 for "GainControl"; tag ignored.
TIFFReadDirectory: Warning, Unknown field with tag 36867 (0x9003) encountered.
TIFFReadDirectory: Warning, Unknown field with tag 37398 (0x9216) encountered.
TIFFFetchNormalTag: Warning, ASCII value for tag "Copyright" contains null byte in value; value incorrectly truncated during reading due to implementation limitations.
TIFFReadDirectory: Warning, Unknown field with tag 36867 (0x9003) encountered.
TIFFReadDirectory: Warning, Unknown field with tag 37398 (0x9216) encountered.
TIFFFetchNormalTag: Warning, ASCII value for tag "Copyright" contains null byte in value; value incorrectly truncated during reading due to implementation limitations.
MissingRequired: TIFF directory is missing required "ImageLength" field.
TIFFReadDirectory: Warning, Unknown field with tag 37399 (0x9217) encountered.
MissingRequired: TIFF directory is missing required "ImageLength" field.
TIFFReadDirectory: Warning, Unknown field with tag 36867 (0x9003) encountered.
TIFFReadDirectory: Warning, Unknown field with tag 37398 (0x9216) encountered.
TIFFFetchNormalTag: Warning, ASCII value for tag "Copyright" contains null byte in value; value incorrectly truncated during reading due to implementation limitations.
And so on. What does it tell us? Use of unknown tags, strings containing NUL bytes and other complications affecting the
interpretation of the data. But the structure is there.
_DSC8504.SR2: TIFF image data, little-endian, direntries=19, compression=JPEG (old), description= , manufacturer=SONY, model=DSC-R1, orientation=upper-left, xresolution=288, yresolution=296, resolutionunit=2, datetime=2025:09:10 10:48:12
(ok, here the first TIFF directory entry appears to be the JPEG thumbnail rather than the raw data or EXIF or any of the other blocks)
DSC_7499.NEF: TIFF image data, little-endian, direntries=28, width=160, height=120, bps=350, compression=none, PhotometricInterpretation=RGB, manufacturer=NIKON CORPORATION, model=NIKON D750, orientation=upper-left
So I am not really sure what "TIF" file in the context of phone raw files means. Could be RGB (in which case older image viewers and processors might or might not understand it out of the box) but that is not a given.
My own Nikon V3 NEFs show two TIFF tags, but they're apparently associated with a tiny thumbnail image that's separate from the full size embedded JPEG ...
TIFF-EP Standard ID : 1.0.0.0
Jpg From Raw : (Binary data 4505122 bytes, use -b option to extract)
Thumbnail TIFF : (Binary data 57816 bytes, use -b option to extract)
I see no mention of TIFF at all in my Sony ARWs.
Not sure what you mean by "mention of TIFF". TIFF files are not required to contain literal strings called "TIFF".