Hi Jitesh!
CDE is mainly aimed at creating software components, which doesn't access the hardware directly, but they should use (inherit) Freescale components. However there is a way. You should inherit Init_GPIO and from the inheritance property you can read values of the component's symbols. This way is not encouraged because it is against the philosophy of Processor Expert components and inheritance, but it should work for you.
To read the symbols you should use this macro language construction in your .drv/.chg script
%get(@Init_GPIO_HCS08@PeriphDevice,SymbolValue[PeriphDeviceBitsMask])
Here Init_GPIO_HCS08 is the symbol of the inheritance property in your component, PeriphDevice is the symbol of the property in the Init_GPIO component and PeriphDeviceBitsMask is the symbol which value you want to know.
To see all symbols that some property generates you have to check both check boxes in Debug Level in Processor Expert preferences:

After you have done this, you can see some of the symbols of the property in it's tooltip (to see this you have to create new PEx project and insert the Init_GPIO component into it and generate the project):

If you don't find the symbol you need to work with in the tooltip, you can see all generated symbols and their values in file {component name}_DEBUG.txt after you generate the project:

All these symbols are however MCU specific and should be used with caution as they can vary between different MCUs.
If you need additional support, feel free to contact us again :smileyhappy: